@sqrzro/auth 4.0.0-alpha.0 → 4.0.0-alpha.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-dev.log +624 -10
- package/dist/components/Auth/index.d.ts +5 -4
- package/dist/components/Auth/index.js +6 -6
- package/dist/components/Password/index.d.ts +4 -3
- package/dist/components/Password/index.js +4 -4
- package/dist/components/PasswordComplexityFormField/index.d.ts +8 -0
- package/dist/components/PasswordComplexityFormField/index.js +10 -0
- package/dist/components/PasswordComplexityInput/index.d.ts +5 -0
- package/dist/components/PasswordComplexityInput/index.js +9 -0
- package/dist/extend-repository.d.ts +0 -0
- package/dist/extend-repository.js +1 -0
- package/dist/forms/LoginForm/index.d.ts +2 -1
- package/dist/forms/LoginForm/index.js +2 -2
- package/dist/forms/LoginForm/server.js +6 -2
- package/dist/forms/PasswordForm/index.d.ts +7 -1
- package/dist/forms/PasswordForm/index.js +19 -4
- package/dist/forms/PasswordForm/server.js +9 -6
- package/dist/forms/PasswordResetForm/index.d.ts +3 -2
- package/dist/forms/PasswordResetForm/index.js +6 -4
- package/dist/forms/PasswordResetForm/server.js +10 -7
- package/dist/get-auth-proxy.d.ts +6 -0
- package/dist/get-auth-proxy.js +17 -0
- package/dist/handle-auth-proxy.d.ts +5 -0
- package/dist/handle-auth-proxy.js +14 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.js +1 -1
- package/dist/interfaces.d.ts +6 -0
- package/dist/mail/PasswordMail.d.ts +5 -0
- package/dist/mail/PasswordMail.js +6 -0
- package/dist/rules/complexity.d.ts +4 -0
- package/dist/rules/complexity.js +9 -0
- package/dist/rules/password.d.ts +3 -0
- package/dist/rules/password.js +6 -0
- package/dist/utility/create-complexity-schema.d.ts +4 -0
- package/dist/utility/create-complexity-schema.js +22 -0
- package/dist/utility/create-password-schema.d.ts +0 -0
- package/dist/utility/create-password-schema.js +1 -0
- package/dist/utility/get-complexity.d.ts +3 -0
- package/dist/utility/get-complexity.js +10 -0
- package/dist/utility/interfaces.d.ts +12 -0
- package/dist/utility/interfaces.js +8 -0
- package/dist/utility/lang.d.ts +2 -0
- package/dist/utility/lang.js +9 -0
- package/dist/utility/validate-complexity.d.ts +3 -0
- package/dist/utility/validate-complexity.js +33 -0
- package/dist/utility/validate-password-complexity.d.ts +14 -0
- package/dist/utility/validate-password-complexity.js +65 -0
- package/package.json +8 -7
- package/src/components/Auth/index.tsx +18 -13
- package/src/components/Password/index.tsx +12 -7
- package/src/components/PasswordComplexityFormField/index.tsx +34 -0
- package/src/forms/LoginForm/index.tsx +10 -4
- package/src/forms/LoginForm/server.ts +11 -3
- package/src/forms/PasswordForm/index.tsx +88 -8
- package/src/forms/PasswordForm/server.ts +13 -7
- package/src/forms/PasswordResetForm/index.tsx +17 -6
- package/src/forms/PasswordResetForm/server.ts +12 -8
- package/src/get-auth-proxy.ts +34 -0
- package/src/index.ts +5 -1
- package/src/interfaces.ts +9 -1
- package/src/mail/PasswordMail.tsx +16 -0
- package/src/rules/complexity.ts +14 -0
- package/src/utility/create-complexity-schema.ts +44 -0
- package/src/utility/get-complexity.ts +14 -0
- package/src/utility/interfaces.ts +11 -0
- package/src/utility/lang.ts +14 -0
- package/src/utility/validate-complexity.ts +53 -0
- package/src/handle-proxy.ts +0 -23
package/.turbo/turbo-dev.log
CHANGED
|
@@ -1,12 +1,54 @@
|
|
|
1
1
|
|
|
2
|
-
> @sqrzro/auth@
|
|
2
|
+
> @sqrzro/auth@4.0.0-alpha.9 dev /Users/richard/Sites/@sqrzro/sqrzro/packages/auth
|
|
3
3
|
> tsc --watch
|
|
4
4
|
|
|
5
|
-
[2J[3J[H[[
|
|
5
|
+
[2J[3J[H[[90m12:13:00 PM[0m] Starting compilation in watch mode...
|
|
6
6
|
|
|
7
|
-
[[
|
|
7
|
+
[96msrc/utility/lang.ts[0m:[93m1[0m:[93m30[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/utility/dist/index.js' implicitly has an 'any' type.
|
|
8
|
+
Try `npm i --save-dev @types/sqrzro__utility` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/utility';`
|
|
8
9
|
|
|
9
|
-
[
|
|
10
|
+
[7m1[0m import { formatPlural } from '@sqrzro/utility';
|
|
11
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
12
|
+
|
|
13
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m1[0m:[93m37[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/utility/dist/index.js' implicitly has an 'any' type.
|
|
14
|
+
Try `npm i --save-dev @types/sqrzro__utility` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/utility';`
|
|
15
|
+
|
|
16
|
+
[7m1[0m import { getEntries, getKeys } from '@sqrzro/utility';
|
|
17
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
18
|
+
|
|
19
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m13[0m:[93m41[0m - [91merror[0m[90m TS7031: [0mBinding element 'key' implicitly has an 'any' type.
|
|
20
|
+
|
|
21
|
+
[7m13[0m return getEntries(complexity).map(([key, value]) => ({
|
|
22
|
+
[7m [0m [91m ~~~[0m
|
|
23
|
+
|
|
24
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m13[0m:[93m46[0m - [91merror[0m[90m TS7031: [0mBinding element 'value' implicitly has an 'any' type.
|
|
25
|
+
|
|
26
|
+
[7m13[0m return getEntries(complexity).map(([key, value]) => ({
|
|
27
|
+
[7m [0m [91m ~~~~~[0m
|
|
28
|
+
|
|
29
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m15[0m:[93m16[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Record<PasswordComplexityKey, (value?: number | undefined) => string>'.
|
|
30
|
+
|
|
31
|
+
[7m15[0m value: complexities[key](value),
|
|
32
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
33
|
+
|
|
34
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m29[0m:[93m41[0m - [91merror[0m[90m TS7031: [0mBinding element 'key' implicitly has an 'any' type.
|
|
35
|
+
|
|
36
|
+
[7m29[0m return getEntries(complexity).map(([key, value]) => ({
|
|
37
|
+
[7m [0m [91m ~~~[0m
|
|
38
|
+
|
|
39
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m29[0m:[93m46[0m - [91merror[0m[90m TS7031: [0mBinding element 'value' implicitly has an 'any' type.
|
|
40
|
+
|
|
41
|
+
[7m29[0m return getEntries(complexity).map(([key, value]) => ({
|
|
42
|
+
[7m [0m [91m ~~~~~[0m
|
|
43
|
+
|
|
44
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m31[0m:[93m16[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Record<PasswordComplexityKey, (value?: number | undefined) => string>'.
|
|
45
|
+
|
|
46
|
+
[7m31[0m value: complexities[key](value),
|
|
47
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
48
|
+
|
|
49
|
+
[[90m12:13:03 PM[0m] Found 8 errors. Watching for file changes.
|
|
50
|
+
|
|
51
|
+
[2J[3J[H[[90m12:13:06 PM[0m] File change detected. Starting incremental compilation...
|
|
10
52
|
|
|
11
53
|
[96msrc/components/LogoutButton/server.ts[0m:[93m3[0m:[93m31[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/server/auth'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/server/dist/auth/index.js' implicitly has an 'any' type.
|
|
12
54
|
Try `npm i --save-dev @types/sqrzro__server` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/server/auth';`
|
|
@@ -32,6 +74,12 @@
|
|
|
32
74
|
[7m4[0m import { FormResponse, submitForm } from '@sqrzro/server/forms';
|
|
33
75
|
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~~~[0m
|
|
34
76
|
|
|
77
|
+
[96msrc/forms/LoginForm/server.ts[0m:[93m5[0m:[93m21[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/server/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/server/dist/utility/index.js' implicitly has an 'any' type.
|
|
78
|
+
Try `npm i --save-dev @types/sqrzro__server` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/server/utility';`
|
|
79
|
+
|
|
80
|
+
[7m5[0m import { log } from '@sqrzro/server/utility';
|
|
81
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~~~~~[0m
|
|
82
|
+
|
|
35
83
|
[96msrc/forms/PasswordForm/server.ts[0m:[93m3[0m:[93m29[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/server/auth'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/server/dist/auth/index.js' implicitly has an 'any' type.
|
|
36
84
|
Try `npm i --save-dev @types/sqrzro__server` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/server/auth';`
|
|
37
85
|
|
|
@@ -44,6 +92,12 @@
|
|
|
44
92
|
[7m4[0m import { FormResponse, submitForm } from '@sqrzro/server/forms';
|
|
45
93
|
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~~~[0m
|
|
46
94
|
|
|
95
|
+
[96msrc/forms/PasswordForm/server.ts[0m:[93m5[0m:[93m26[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/server/mail'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/server/dist/mail/index.js' implicitly has an 'any' type.
|
|
96
|
+
Try `npm i --save-dev @types/sqrzro__server` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/server/mail';`
|
|
97
|
+
|
|
98
|
+
[7m5[0m import { sendMail } from '@sqrzro/server/mail';
|
|
99
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~~[0m
|
|
100
|
+
|
|
47
101
|
[96msrc/forms/PasswordResetForm/server.ts[0m:[93m3[0m:[93m41[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/server/auth'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/server/dist/auth/index.js' implicitly has an 'any' type.
|
|
48
102
|
Try `npm i --save-dev @types/sqrzro__server` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/server/auth';`
|
|
49
103
|
|
|
@@ -56,16 +110,576 @@
|
|
|
56
110
|
[7m4[0m import { FormResponse, submitForm } from '@sqrzro/server/forms';
|
|
57
111
|
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~~~[0m
|
|
58
112
|
|
|
59
|
-
[96msrc/
|
|
113
|
+
[96msrc/get-auth-proxy.ts[0m:[93m1[0m:[93m34[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/server/auth'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/server/dist/auth/index.js' implicitly has an 'any' type.
|
|
60
114
|
Try `npm i --save-dev @types/sqrzro__server` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/server/auth';`
|
|
61
115
|
|
|
62
|
-
[7m1[0m import {
|
|
63
|
-
[7m [0m [91m
|
|
116
|
+
[7m1[0m import type { AuthSession } from '@sqrzro/server/auth';
|
|
117
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~~[0m
|
|
118
|
+
|
|
119
|
+
[96msrc/get-auth-proxy.ts[0m:[93m2[0m:[93m36[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/server/proxy'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/server/dist/proxy/index.js' implicitly has an 'any' type.
|
|
120
|
+
Try `npm i --save-dev @types/sqrzro__server` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/server/proxy';`
|
|
121
|
+
|
|
122
|
+
[7m2[0m import type { ProxyRedirect } from '@sqrzro/server/proxy';
|
|
123
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~~~[0m
|
|
124
|
+
|
|
125
|
+
[96msrc/mail/PasswordMail.tsx[0m:[93m1[0m:[93m28[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/server/mail'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/server/dist/mail/index.js' implicitly has an 'any' type.
|
|
126
|
+
Try `npm i --save-dev @types/sqrzro__server` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/server/mail';`
|
|
127
|
+
|
|
128
|
+
[7m1[0m import { createMail } from '@sqrzro/server/mail';
|
|
129
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~~[0m
|
|
130
|
+
|
|
131
|
+
[96msrc/utility/lang.ts[0m:[93m1[0m:[93m30[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/utility/dist/index.js' implicitly has an 'any' type.
|
|
132
|
+
Try `npm i --save-dev @types/sqrzro__utility` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/utility';`
|
|
133
|
+
|
|
134
|
+
[7m1[0m import { formatPlural } from '@sqrzro/utility';
|
|
135
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
136
|
+
|
|
137
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m1[0m:[93m37[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/utility/dist/index.js' implicitly has an 'any' type.
|
|
138
|
+
Try `npm i --save-dev @types/sqrzro__utility` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/utility';`
|
|
139
|
+
|
|
140
|
+
[7m1[0m import { getEntries, getKeys } from '@sqrzro/utility';
|
|
141
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
142
|
+
|
|
143
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m13[0m:[93m41[0m - [91merror[0m[90m TS7031: [0mBinding element 'key' implicitly has an 'any' type.
|
|
144
|
+
|
|
145
|
+
[7m13[0m return getEntries(complexity).map(([key, value]) => ({
|
|
146
|
+
[7m [0m [91m ~~~[0m
|
|
147
|
+
|
|
148
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m13[0m:[93m46[0m - [91merror[0m[90m TS7031: [0mBinding element 'value' implicitly has an 'any' type.
|
|
149
|
+
|
|
150
|
+
[7m13[0m return getEntries(complexity).map(([key, value]) => ({
|
|
151
|
+
[7m [0m [91m ~~~~~[0m
|
|
152
|
+
|
|
153
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m15[0m:[93m16[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Record<PasswordComplexityKey, (value?: number | undefined) => string>'.
|
|
154
|
+
|
|
155
|
+
[7m15[0m value: complexities[key](value),
|
|
156
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
157
|
+
|
|
158
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m29[0m:[93m41[0m - [91merror[0m[90m TS7031: [0mBinding element 'key' implicitly has an 'any' type.
|
|
159
|
+
|
|
160
|
+
[7m29[0m return getEntries(complexity).map(([key, value]) => ({
|
|
161
|
+
[7m [0m [91m ~~~[0m
|
|
162
|
+
|
|
163
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m29[0m:[93m46[0m - [91merror[0m[90m TS7031: [0mBinding element 'value' implicitly has an 'any' type.
|
|
164
|
+
|
|
165
|
+
[7m29[0m return getEntries(complexity).map(([key, value]) => ({
|
|
166
|
+
[7m [0m [91m ~~~~~[0m
|
|
167
|
+
|
|
168
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m31[0m:[93m16[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Record<PasswordComplexityKey, (value?: number | undefined) => string>'.
|
|
169
|
+
|
|
170
|
+
[7m31[0m value: complexities[key](value),
|
|
171
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
172
|
+
|
|
173
|
+
[[90m12:13:06 PM[0m] Found 21 errors. Watching for file changes.
|
|
174
|
+
|
|
175
|
+
[2J[3J[H[[90m12:13:10 PM[0m] File change detected. Starting incremental compilation...
|
|
176
|
+
|
|
177
|
+
[96msrc/utility/lang.ts[0m:[93m1[0m:[93m30[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/utility/dist/index.js' implicitly has an 'any' type.
|
|
178
|
+
Try `npm i --save-dev @types/sqrzro__utility` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/utility';`
|
|
179
|
+
|
|
180
|
+
[7m1[0m import { formatPlural } from '@sqrzro/utility';
|
|
181
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
182
|
+
|
|
183
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m1[0m:[93m37[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/utility/dist/index.js' implicitly has an 'any' type.
|
|
184
|
+
Try `npm i --save-dev @types/sqrzro__utility` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/utility';`
|
|
185
|
+
|
|
186
|
+
[7m1[0m import { getEntries, getKeys } from '@sqrzro/utility';
|
|
187
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
188
|
+
|
|
189
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m13[0m:[93m41[0m - [91merror[0m[90m TS7031: [0mBinding element 'key' implicitly has an 'any' type.
|
|
190
|
+
|
|
191
|
+
[7m13[0m return getEntries(complexity).map(([key, value]) => ({
|
|
192
|
+
[7m [0m [91m ~~~[0m
|
|
193
|
+
|
|
194
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m13[0m:[93m46[0m - [91merror[0m[90m TS7031: [0mBinding element 'value' implicitly has an 'any' type.
|
|
195
|
+
|
|
196
|
+
[7m13[0m return getEntries(complexity).map(([key, value]) => ({
|
|
197
|
+
[7m [0m [91m ~~~~~[0m
|
|
198
|
+
|
|
199
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m15[0m:[93m16[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Record<PasswordComplexityKey, (value?: number | undefined) => string>'.
|
|
200
|
+
|
|
201
|
+
[7m15[0m value: complexities[key](value),
|
|
202
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
203
|
+
|
|
204
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m29[0m:[93m41[0m - [91merror[0m[90m TS7031: [0mBinding element 'key' implicitly has an 'any' type.
|
|
205
|
+
|
|
206
|
+
[7m29[0m return getEntries(complexity).map(([key, value]) => ({
|
|
207
|
+
[7m [0m [91m ~~~[0m
|
|
208
|
+
|
|
209
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m29[0m:[93m46[0m - [91merror[0m[90m TS7031: [0mBinding element 'value' implicitly has an 'any' type.
|
|
210
|
+
|
|
211
|
+
[7m29[0m return getEntries(complexity).map(([key, value]) => ({
|
|
212
|
+
[7m [0m [91m ~~~~~[0m
|
|
213
|
+
|
|
214
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m31[0m:[93m16[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Record<PasswordComplexityKey, (value?: number | undefined) => string>'.
|
|
215
|
+
|
|
216
|
+
[7m31[0m value: complexities[key](value),
|
|
217
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
218
|
+
|
|
219
|
+
[[90m12:13:10 PM[0m] Found 8 errors. Watching for file changes.
|
|
220
|
+
|
|
221
|
+
[2J[3J[H[[90m12:14:48 PM[0m] File change detected. Starting incremental compilation...
|
|
222
|
+
|
|
223
|
+
[96msrc/utility/lang.ts[0m:[93m1[0m:[93m30[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/utility/dist/index.js' implicitly has an 'any' type.
|
|
224
|
+
Try `npm i --save-dev @types/sqrzro__utility` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/utility';`
|
|
225
|
+
|
|
226
|
+
[7m1[0m import { formatPlural } from '@sqrzro/utility';
|
|
227
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
228
|
+
|
|
229
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m1[0m:[93m37[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/utility/dist/index.js' implicitly has an 'any' type.
|
|
230
|
+
Try `npm i --save-dev @types/sqrzro__utility` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/utility';`
|
|
231
|
+
|
|
232
|
+
[7m1[0m import { getEntries, getKeys } from '@sqrzro/utility';
|
|
233
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
234
|
+
|
|
235
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m13[0m:[93m41[0m - [91merror[0m[90m TS7031: [0mBinding element 'key' implicitly has an 'any' type.
|
|
236
|
+
|
|
237
|
+
[7m13[0m return getEntries(complexity).map(([key, value]) => ({
|
|
238
|
+
[7m [0m [91m ~~~[0m
|
|
239
|
+
|
|
240
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m13[0m:[93m46[0m - [91merror[0m[90m TS7031: [0mBinding element 'value' implicitly has an 'any' type.
|
|
241
|
+
|
|
242
|
+
[7m13[0m return getEntries(complexity).map(([key, value]) => ({
|
|
243
|
+
[7m [0m [91m ~~~~~[0m
|
|
244
|
+
|
|
245
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m15[0m:[93m16[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Record<PasswordComplexityKey, (value?: number | undefined) => string>'.
|
|
246
|
+
|
|
247
|
+
[7m15[0m value: complexities[key](value),
|
|
248
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
249
|
+
|
|
250
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m29[0m:[93m41[0m - [91merror[0m[90m TS7031: [0mBinding element 'key' implicitly has an 'any' type.
|
|
251
|
+
|
|
252
|
+
[7m29[0m return getEntries(complexity).map(([key, value]) => ({
|
|
253
|
+
[7m [0m [91m ~~~[0m
|
|
254
|
+
|
|
255
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m29[0m:[93m46[0m - [91merror[0m[90m TS7031: [0mBinding element 'value' implicitly has an 'any' type.
|
|
256
|
+
|
|
257
|
+
[7m29[0m return getEntries(complexity).map(([key, value]) => ({
|
|
258
|
+
[7m [0m [91m ~~~~~[0m
|
|
259
|
+
|
|
260
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m31[0m:[93m16[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Record<PasswordComplexityKey, (value?: number | undefined) => string>'.
|
|
261
|
+
|
|
262
|
+
[7m31[0m value: complexities[key](value),
|
|
263
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
264
|
+
|
|
265
|
+
[[90m12:14:48 PM[0m] Found 8 errors. Watching for file changes.
|
|
266
|
+
|
|
267
|
+
[2J[3J[H[[90m12:14:53 PM[0m] File change detected. Starting incremental compilation...
|
|
268
|
+
|
|
269
|
+
[96msrc/utility/lang.ts[0m:[93m1[0m:[93m30[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/utility/dist/index.js' implicitly has an 'any' type.
|
|
270
|
+
Try `npm i --save-dev @types/sqrzro__utility` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/utility';`
|
|
271
|
+
|
|
272
|
+
[7m1[0m import { formatPlural } from '@sqrzro/utility';
|
|
273
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
274
|
+
|
|
275
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m1[0m:[93m37[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/utility/dist/index.js' implicitly has an 'any' type.
|
|
276
|
+
Try `npm i --save-dev @types/sqrzro__utility` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/utility';`
|
|
277
|
+
|
|
278
|
+
[7m1[0m import { getEntries, getKeys } from '@sqrzro/utility';
|
|
279
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
280
|
+
|
|
281
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m13[0m:[93m41[0m - [91merror[0m[90m TS7031: [0mBinding element 'key' implicitly has an 'any' type.
|
|
282
|
+
|
|
283
|
+
[7m13[0m return getEntries(complexity).map(([key, value]) => ({
|
|
284
|
+
[7m [0m [91m ~~~[0m
|
|
285
|
+
|
|
286
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m13[0m:[93m46[0m - [91merror[0m[90m TS7031: [0mBinding element 'value' implicitly has an 'any' type.
|
|
287
|
+
|
|
288
|
+
[7m13[0m return getEntries(complexity).map(([key, value]) => ({
|
|
289
|
+
[7m [0m [91m ~~~~~[0m
|
|
290
|
+
|
|
291
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m15[0m:[93m16[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Record<PasswordComplexityKey, (value?: number | undefined) => string>'.
|
|
292
|
+
|
|
293
|
+
[7m15[0m value: complexities[key](value),
|
|
294
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
295
|
+
|
|
296
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m29[0m:[93m41[0m - [91merror[0m[90m TS7031: [0mBinding element 'key' implicitly has an 'any' type.
|
|
297
|
+
|
|
298
|
+
[7m29[0m return getEntries(complexity).map(([key, value]) => ({
|
|
299
|
+
[7m [0m [91m ~~~[0m
|
|
300
|
+
|
|
301
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m29[0m:[93m46[0m - [91merror[0m[90m TS7031: [0mBinding element 'value' implicitly has an 'any' type.
|
|
302
|
+
|
|
303
|
+
[7m29[0m return getEntries(complexity).map(([key, value]) => ({
|
|
304
|
+
[7m [0m [91m ~~~~~[0m
|
|
305
|
+
|
|
306
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m31[0m:[93m16[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Record<PasswordComplexityKey, (value?: number | undefined) => string>'.
|
|
307
|
+
|
|
308
|
+
[7m31[0m value: complexities[key](value),
|
|
309
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
310
|
+
|
|
311
|
+
[[90m12:14:53 PM[0m] Found 8 errors. Watching for file changes.
|
|
312
|
+
|
|
313
|
+
[2J[3J[H[[90m12:15:49 PM[0m] File change detected. Starting incremental compilation...
|
|
314
|
+
|
|
315
|
+
[96msrc/utility/lang.ts[0m:[93m1[0m:[93m30[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/utility/dist/index.js' implicitly has an 'any' type.
|
|
316
|
+
Try `npm i --save-dev @types/sqrzro__utility` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/utility';`
|
|
317
|
+
|
|
318
|
+
[7m1[0m import { formatPlural } from '@sqrzro/utility';
|
|
319
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
320
|
+
|
|
321
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m1[0m:[93m37[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/utility/dist/index.js' implicitly has an 'any' type.
|
|
322
|
+
Try `npm i --save-dev @types/sqrzro__utility` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/utility';`
|
|
323
|
+
|
|
324
|
+
[7m1[0m import { getEntries, getKeys } from '@sqrzro/utility';
|
|
325
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
326
|
+
|
|
327
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m13[0m:[93m41[0m - [91merror[0m[90m TS7031: [0mBinding element 'key' implicitly has an 'any' type.
|
|
328
|
+
|
|
329
|
+
[7m13[0m return getEntries(complexity).map(([key, value]) => ({
|
|
330
|
+
[7m [0m [91m ~~~[0m
|
|
331
|
+
|
|
332
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m13[0m:[93m46[0m - [91merror[0m[90m TS7031: [0mBinding element 'value' implicitly has an 'any' type.
|
|
333
|
+
|
|
334
|
+
[7m13[0m return getEntries(complexity).map(([key, value]) => ({
|
|
335
|
+
[7m [0m [91m ~~~~~[0m
|
|
336
|
+
|
|
337
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m15[0m:[93m16[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Record<PasswordComplexityKey, (value?: number | undefined) => string>'.
|
|
338
|
+
|
|
339
|
+
[7m15[0m value: complexities[key](value),
|
|
340
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
341
|
+
|
|
342
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m29[0m:[93m41[0m - [91merror[0m[90m TS7031: [0mBinding element 'key' implicitly has an 'any' type.
|
|
343
|
+
|
|
344
|
+
[7m29[0m return getEntries(complexity).map(([key, value]) => ({
|
|
345
|
+
[7m [0m [91m ~~~[0m
|
|
346
|
+
|
|
347
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m29[0m:[93m46[0m - [91merror[0m[90m TS7031: [0mBinding element 'value' implicitly has an 'any' type.
|
|
348
|
+
|
|
349
|
+
[7m29[0m return getEntries(complexity).map(([key, value]) => ({
|
|
350
|
+
[7m [0m [91m ~~~~~[0m
|
|
351
|
+
|
|
352
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m31[0m:[93m16[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Record<PasswordComplexityKey, (value?: number | undefined) => string>'.
|
|
353
|
+
|
|
354
|
+
[7m31[0m value: complexities[key](value),
|
|
355
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
356
|
+
|
|
357
|
+
[[90m12:15:49 PM[0m] Found 8 errors. Watching for file changes.
|
|
358
|
+
|
|
359
|
+
[2J[3J[H[[90m12:19:33 PM[0m] File change detected. Starting incremental compilation...
|
|
360
|
+
|
|
361
|
+
[96msrc/utility/lang.ts[0m:[93m1[0m:[93m30[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/utility/dist/index.js' implicitly has an 'any' type.
|
|
362
|
+
Try `npm i --save-dev @types/sqrzro__utility` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/utility';`
|
|
363
|
+
|
|
364
|
+
[7m1[0m import { formatPlural } from '@sqrzro/utility';
|
|
365
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
366
|
+
|
|
367
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m1[0m:[93m37[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/utility/dist/index.js' implicitly has an 'any' type.
|
|
368
|
+
Try `npm i --save-dev @types/sqrzro__utility` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/utility';`
|
|
369
|
+
|
|
370
|
+
[7m1[0m import { getEntries, getKeys } from '@sqrzro/utility';
|
|
371
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
372
|
+
|
|
373
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m13[0m:[93m41[0m - [91merror[0m[90m TS7031: [0mBinding element 'key' implicitly has an 'any' type.
|
|
374
|
+
|
|
375
|
+
[7m13[0m return getEntries(complexity).map(([key, value]) => ({
|
|
376
|
+
[7m [0m [91m ~~~[0m
|
|
377
|
+
|
|
378
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m13[0m:[93m46[0m - [91merror[0m[90m TS7031: [0mBinding element 'value' implicitly has an 'any' type.
|
|
379
|
+
|
|
380
|
+
[7m13[0m return getEntries(complexity).map(([key, value]) => ({
|
|
381
|
+
[7m [0m [91m ~~~~~[0m
|
|
382
|
+
|
|
383
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m15[0m:[93m16[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Record<PasswordComplexityKey, (value?: number | undefined) => string>'.
|
|
384
|
+
|
|
385
|
+
[7m15[0m value: complexities[key](value),
|
|
386
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
387
|
+
|
|
388
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m29[0m:[93m41[0m - [91merror[0m[90m TS7031: [0mBinding element 'key' implicitly has an 'any' type.
|
|
389
|
+
|
|
390
|
+
[7m29[0m return getEntries(complexity).map(([key, value]) => ({
|
|
391
|
+
[7m [0m [91m ~~~[0m
|
|
392
|
+
|
|
393
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m29[0m:[93m46[0m - [91merror[0m[90m TS7031: [0mBinding element 'value' implicitly has an 'any' type.
|
|
394
|
+
|
|
395
|
+
[7m29[0m return getEntries(complexity).map(([key, value]) => ({
|
|
396
|
+
[7m [0m [91m ~~~~~[0m
|
|
397
|
+
|
|
398
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m31[0m:[93m16[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Record<PasswordComplexityKey, (value?: number | undefined) => string>'.
|
|
399
|
+
|
|
400
|
+
[7m31[0m value: complexities[key](value),
|
|
401
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
402
|
+
|
|
403
|
+
[[90m12:19:33 PM[0m] Found 8 errors. Watching for file changes.
|
|
404
|
+
|
|
405
|
+
[2J[3J[H[[90m12:19:52 PM[0m] File change detected. Starting incremental compilation...
|
|
406
|
+
|
|
407
|
+
[96msrc/utility/lang.ts[0m:[93m1[0m:[93m30[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/utility/dist/index.js' implicitly has an 'any' type.
|
|
408
|
+
Try `npm i --save-dev @types/sqrzro__utility` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/utility';`
|
|
409
|
+
|
|
410
|
+
[7m1[0m import { formatPlural } from '@sqrzro/utility';
|
|
411
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
412
|
+
|
|
413
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m1[0m:[93m37[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/utility/dist/index.js' implicitly has an 'any' type.
|
|
414
|
+
Try `npm i --save-dev @types/sqrzro__utility` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/utility';`
|
|
415
|
+
|
|
416
|
+
[7m1[0m import { getEntries, getKeys } from '@sqrzro/utility';
|
|
417
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
418
|
+
|
|
419
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m13[0m:[93m41[0m - [91merror[0m[90m TS7031: [0mBinding element 'key' implicitly has an 'any' type.
|
|
420
|
+
|
|
421
|
+
[7m13[0m return getEntries(complexity).map(([key, value]) => ({
|
|
422
|
+
[7m [0m [91m ~~~[0m
|
|
423
|
+
|
|
424
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m13[0m:[93m46[0m - [91merror[0m[90m TS7031: [0mBinding element 'value' implicitly has an 'any' type.
|
|
425
|
+
|
|
426
|
+
[7m13[0m return getEntries(complexity).map(([key, value]) => ({
|
|
427
|
+
[7m [0m [91m ~~~~~[0m
|
|
428
|
+
|
|
429
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m15[0m:[93m16[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Record<PasswordComplexityKey, (value?: number | undefined) => string>'.
|
|
430
|
+
|
|
431
|
+
[7m15[0m value: complexities[key](value),
|
|
432
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
433
|
+
|
|
434
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m29[0m:[93m41[0m - [91merror[0m[90m TS7031: [0mBinding element 'key' implicitly has an 'any' type.
|
|
435
|
+
|
|
436
|
+
[7m29[0m return getEntries(complexity).map(([key, value]) => ({
|
|
437
|
+
[7m [0m [91m ~~~[0m
|
|
438
|
+
|
|
439
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m29[0m:[93m46[0m - [91merror[0m[90m TS7031: [0mBinding element 'value' implicitly has an 'any' type.
|
|
440
|
+
|
|
441
|
+
[7m29[0m return getEntries(complexity).map(([key, value]) => ({
|
|
442
|
+
[7m [0m [91m ~~~~~[0m
|
|
443
|
+
|
|
444
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m31[0m:[93m16[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Record<PasswordComplexityKey, (value?: number | undefined) => string>'.
|
|
445
|
+
|
|
446
|
+
[7m31[0m value: complexities[key](value),
|
|
447
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
448
|
+
|
|
449
|
+
[[90m12:19:52 PM[0m] Found 8 errors. Watching for file changes.
|
|
450
|
+
|
|
451
|
+
[2J[3J[H[[90m12:22:13 PM[0m] File change detected. Starting incremental compilation...
|
|
452
|
+
|
|
453
|
+
[96msrc/utility/lang.ts[0m:[93m1[0m:[93m30[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/utility/dist/index.js' implicitly has an 'any' type.
|
|
454
|
+
Try `npm i --save-dev @types/sqrzro__utility` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/utility';`
|
|
455
|
+
|
|
456
|
+
[7m1[0m import { formatPlural } from '@sqrzro/utility';
|
|
457
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
458
|
+
|
|
459
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m1[0m:[93m37[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/utility/dist/index.js' implicitly has an 'any' type.
|
|
460
|
+
Try `npm i --save-dev @types/sqrzro__utility` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/utility';`
|
|
461
|
+
|
|
462
|
+
[7m1[0m import { getEntries, getKeys } from '@sqrzro/utility';
|
|
463
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
464
|
+
|
|
465
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m13[0m:[93m41[0m - [91merror[0m[90m TS7031: [0mBinding element 'key' implicitly has an 'any' type.
|
|
466
|
+
|
|
467
|
+
[7m13[0m return getEntries(complexity).map(([key, value]) => ({
|
|
468
|
+
[7m [0m [91m ~~~[0m
|
|
469
|
+
|
|
470
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m13[0m:[93m46[0m - [91merror[0m[90m TS7031: [0mBinding element 'value' implicitly has an 'any' type.
|
|
471
|
+
|
|
472
|
+
[7m13[0m return getEntries(complexity).map(([key, value]) => ({
|
|
473
|
+
[7m [0m [91m ~~~~~[0m
|
|
474
|
+
|
|
475
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m15[0m:[93m16[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Record<PasswordComplexityKey, (value?: number | undefined) => string>'.
|
|
476
|
+
|
|
477
|
+
[7m15[0m value: complexities[key](value),
|
|
478
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
479
|
+
|
|
480
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m29[0m:[93m41[0m - [91merror[0m[90m TS7031: [0mBinding element 'key' implicitly has an 'any' type.
|
|
481
|
+
|
|
482
|
+
[7m29[0m return getEntries(complexity).map(([key, value]) => ({
|
|
483
|
+
[7m [0m [91m ~~~[0m
|
|
484
|
+
|
|
485
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m29[0m:[93m46[0m - [91merror[0m[90m TS7031: [0mBinding element 'value' implicitly has an 'any' type.
|
|
486
|
+
|
|
487
|
+
[7m29[0m return getEntries(complexity).map(([key, value]) => ({
|
|
488
|
+
[7m [0m [91m ~~~~~[0m
|
|
489
|
+
|
|
490
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m31[0m:[93m16[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Record<PasswordComplexityKey, (value?: number | undefined) => string>'.
|
|
491
|
+
|
|
492
|
+
[7m31[0m value: complexities[key](value),
|
|
493
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
494
|
+
|
|
495
|
+
[[90m12:22:13 PM[0m] Found 8 errors. Watching for file changes.
|
|
496
|
+
|
|
497
|
+
[2J[3J[H[[90m12:22:47 PM[0m] File change detected. Starting incremental compilation...
|
|
498
|
+
|
|
499
|
+
[96msrc/utility/lang.ts[0m:[93m1[0m:[93m30[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/utility/dist/index.js' implicitly has an 'any' type.
|
|
500
|
+
Try `npm i --save-dev @types/sqrzro__utility` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/utility';`
|
|
501
|
+
|
|
502
|
+
[7m1[0m import { formatPlural } from '@sqrzro/utility';
|
|
503
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
504
|
+
|
|
505
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m1[0m:[93m37[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/utility/dist/index.js' implicitly has an 'any' type.
|
|
506
|
+
Try `npm i --save-dev @types/sqrzro__utility` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/utility';`
|
|
507
|
+
|
|
508
|
+
[7m1[0m import { getEntries, getKeys } from '@sqrzro/utility';
|
|
509
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
510
|
+
|
|
511
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m13[0m:[93m41[0m - [91merror[0m[90m TS7031: [0mBinding element 'key' implicitly has an 'any' type.
|
|
512
|
+
|
|
513
|
+
[7m13[0m return getEntries(complexity).map(([key, value]) => ({
|
|
514
|
+
[7m [0m [91m ~~~[0m
|
|
515
|
+
|
|
516
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m13[0m:[93m46[0m - [91merror[0m[90m TS7031: [0mBinding element 'value' implicitly has an 'any' type.
|
|
517
|
+
|
|
518
|
+
[7m13[0m return getEntries(complexity).map(([key, value]) => ({
|
|
519
|
+
[7m [0m [91m ~~~~~[0m
|
|
520
|
+
|
|
521
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m15[0m:[93m16[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Record<PasswordComplexityKey, (value?: number | undefined) => string>'.
|
|
522
|
+
|
|
523
|
+
[7m15[0m value: complexities[key](value),
|
|
524
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
525
|
+
|
|
526
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m29[0m:[93m41[0m - [91merror[0m[90m TS7031: [0mBinding element 'key' implicitly has an 'any' type.
|
|
527
|
+
|
|
528
|
+
[7m29[0m return getEntries(complexity).map(([key, value]) => ({
|
|
529
|
+
[7m [0m [91m ~~~[0m
|
|
530
|
+
|
|
531
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m29[0m:[93m46[0m - [91merror[0m[90m TS7031: [0mBinding element 'value' implicitly has an 'any' type.
|
|
532
|
+
|
|
533
|
+
[7m29[0m return getEntries(complexity).map(([key, value]) => ({
|
|
534
|
+
[7m [0m [91m ~~~~~[0m
|
|
535
|
+
|
|
536
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m31[0m:[93m16[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Record<PasswordComplexityKey, (value?: number | undefined) => string>'.
|
|
537
|
+
|
|
538
|
+
[7m31[0m value: complexities[key](value),
|
|
539
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
540
|
+
|
|
541
|
+
[[90m12:22:47 PM[0m] Found 8 errors. Watching for file changes.
|
|
542
|
+
|
|
543
|
+
[2J[3J[H[[90m12:22:54 PM[0m] File change detected. Starting incremental compilation...
|
|
544
|
+
|
|
545
|
+
[96msrc/utility/lang.ts[0m:[93m1[0m:[93m30[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/utility/dist/index.js' implicitly has an 'any' type.
|
|
546
|
+
Try `npm i --save-dev @types/sqrzro__utility` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/utility';`
|
|
547
|
+
|
|
548
|
+
[7m1[0m import { formatPlural } from '@sqrzro/utility';
|
|
549
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
550
|
+
|
|
551
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m1[0m:[93m37[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/utility/dist/index.js' implicitly has an 'any' type.
|
|
552
|
+
Try `npm i --save-dev @types/sqrzro__utility` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/utility';`
|
|
553
|
+
|
|
554
|
+
[7m1[0m import { getEntries, getKeys } from '@sqrzro/utility';
|
|
555
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
556
|
+
|
|
557
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m13[0m:[93m41[0m - [91merror[0m[90m TS7031: [0mBinding element 'key' implicitly has an 'any' type.
|
|
558
|
+
|
|
559
|
+
[7m13[0m return getEntries(complexity).map(([key, value]) => ({
|
|
560
|
+
[7m [0m [91m ~~~[0m
|
|
561
|
+
|
|
562
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m13[0m:[93m46[0m - [91merror[0m[90m TS7031: [0mBinding element 'value' implicitly has an 'any' type.
|
|
563
|
+
|
|
564
|
+
[7m13[0m return getEntries(complexity).map(([key, value]) => ({
|
|
565
|
+
[7m [0m [91m ~~~~~[0m
|
|
566
|
+
|
|
567
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m15[0m:[93m16[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Record<PasswordComplexityKey, (value?: number | undefined) => string>'.
|
|
568
|
+
|
|
569
|
+
[7m15[0m value: complexities[key](value),
|
|
570
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
571
|
+
|
|
572
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m29[0m:[93m41[0m - [91merror[0m[90m TS7031: [0mBinding element 'key' implicitly has an 'any' type.
|
|
573
|
+
|
|
574
|
+
[7m29[0m return getEntries(complexity).map(([key, value]) => ({
|
|
575
|
+
[7m [0m [91m ~~~[0m
|
|
576
|
+
|
|
577
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m29[0m:[93m46[0m - [91merror[0m[90m TS7031: [0mBinding element 'value' implicitly has an 'any' type.
|
|
578
|
+
|
|
579
|
+
[7m29[0m return getEntries(complexity).map(([key, value]) => ({
|
|
580
|
+
[7m [0m [91m ~~~~~[0m
|
|
581
|
+
|
|
582
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m31[0m:[93m16[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Record<PasswordComplexityKey, (value?: number | undefined) => string>'.
|
|
583
|
+
|
|
584
|
+
[7m31[0m value: complexities[key](value),
|
|
585
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
586
|
+
|
|
587
|
+
[[90m12:22:54 PM[0m] Found 8 errors. Watching for file changes.
|
|
588
|
+
|
|
589
|
+
[2J[3J[H[[90m12:42:08 PM[0m] File change detected. Starting incremental compilation...
|
|
590
|
+
|
|
591
|
+
[96msrc/utility/lang.ts[0m:[93m1[0m:[93m30[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/utility/dist/index.js' implicitly has an 'any' type.
|
|
592
|
+
Try `npm i --save-dev @types/sqrzro__utility` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/utility';`
|
|
593
|
+
|
|
594
|
+
[7m1[0m import { formatPlural } from '@sqrzro/utility';
|
|
595
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
596
|
+
|
|
597
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m1[0m:[93m37[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/utility/dist/index.js' implicitly has an 'any' type.
|
|
598
|
+
Try `npm i --save-dev @types/sqrzro__utility` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/utility';`
|
|
599
|
+
|
|
600
|
+
[7m1[0m import { getEntries, getKeys } from '@sqrzro/utility';
|
|
601
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
602
|
+
|
|
603
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m13[0m:[93m41[0m - [91merror[0m[90m TS7031: [0mBinding element 'key' implicitly has an 'any' type.
|
|
604
|
+
|
|
605
|
+
[7m13[0m return getEntries(complexity).map(([key, value]) => ({
|
|
606
|
+
[7m [0m [91m ~~~[0m
|
|
607
|
+
|
|
608
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m13[0m:[93m46[0m - [91merror[0m[90m TS7031: [0mBinding element 'value' implicitly has an 'any' type.
|
|
609
|
+
|
|
610
|
+
[7m13[0m return getEntries(complexity).map(([key, value]) => ({
|
|
611
|
+
[7m [0m [91m ~~~~~[0m
|
|
612
|
+
|
|
613
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m15[0m:[93m16[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Record<PasswordComplexityKey, (value?: number | undefined) => string>'.
|
|
614
|
+
|
|
615
|
+
[7m15[0m value: complexities[key](value),
|
|
616
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
617
|
+
|
|
618
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m29[0m:[93m41[0m - [91merror[0m[90m TS7031: [0mBinding element 'key' implicitly has an 'any' type.
|
|
619
|
+
|
|
620
|
+
[7m29[0m return getEntries(complexity).map(([key, value]) => ({
|
|
621
|
+
[7m [0m [91m ~~~[0m
|
|
622
|
+
|
|
623
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m29[0m:[93m46[0m - [91merror[0m[90m TS7031: [0mBinding element 'value' implicitly has an 'any' type.
|
|
624
|
+
|
|
625
|
+
[7m29[0m return getEntries(complexity).map(([key, value]) => ({
|
|
626
|
+
[7m [0m [91m ~~~~~[0m
|
|
627
|
+
|
|
628
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m31[0m:[93m16[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Record<PasswordComplexityKey, (value?: number | undefined) => string>'.
|
|
629
|
+
|
|
630
|
+
[7m31[0m value: complexities[key](value),
|
|
631
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
632
|
+
|
|
633
|
+
[[90m12:42:08 PM[0m] Found 8 errors. Watching for file changes.
|
|
634
|
+
|
|
635
|
+
[2J[3J[H[[90m12:42:53 PM[0m] File change detected. Starting incremental compilation...
|
|
636
|
+
|
|
637
|
+
[96msrc/utility/lang.ts[0m:[93m1[0m:[93m30[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/utility/dist/index.js' implicitly has an 'any' type.
|
|
638
|
+
Try `npm i --save-dev @types/sqrzro__utility` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/utility';`
|
|
639
|
+
|
|
640
|
+
[7m1[0m import { formatPlural } from '@sqrzro/utility';
|
|
641
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
642
|
+
|
|
643
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m1[0m:[93m37[0m - [91merror[0m[90m TS7016: [0mCould not find a declaration file for module '@sqrzro/utility'. '/Users/richard/Sites/@sqrzro/sqrzro/packages/utility/dist/index.js' implicitly has an 'any' type.
|
|
644
|
+
Try `npm i --save-dev @types/sqrzro__utility` if it exists or add a new declaration (.d.ts) file containing `declare module '@sqrzro/utility';`
|
|
645
|
+
|
|
646
|
+
[7m1[0m import { getEntries, getKeys } from '@sqrzro/utility';
|
|
647
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
648
|
+
|
|
649
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m13[0m:[93m41[0m - [91merror[0m[90m TS7031: [0mBinding element 'key' implicitly has an 'any' type.
|
|
650
|
+
|
|
651
|
+
[7m13[0m return getEntries(complexity).map(([key, value]) => ({
|
|
652
|
+
[7m [0m [91m ~~~[0m
|
|
653
|
+
|
|
654
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m13[0m:[93m46[0m - [91merror[0m[90m TS7031: [0mBinding element 'value' implicitly has an 'any' type.
|
|
655
|
+
|
|
656
|
+
[7m13[0m return getEntries(complexity).map(([key, value]) => ({
|
|
657
|
+
[7m [0m [91m ~~~~~[0m
|
|
658
|
+
|
|
659
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m15[0m:[93m16[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Record<PasswordComplexityKey, (value?: number | undefined) => string>'.
|
|
660
|
+
|
|
661
|
+
[7m15[0m value: complexities[key](value),
|
|
662
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
663
|
+
|
|
664
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m29[0m:[93m41[0m - [91merror[0m[90m TS7031: [0mBinding element 'key' implicitly has an 'any' type.
|
|
665
|
+
|
|
666
|
+
[7m29[0m return getEntries(complexity).map(([key, value]) => ({
|
|
667
|
+
[7m [0m [91m ~~~[0m
|
|
668
|
+
|
|
669
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m29[0m:[93m46[0m - [91merror[0m[90m TS7031: [0mBinding element 'value' implicitly has an 'any' type.
|
|
670
|
+
|
|
671
|
+
[7m29[0m return getEntries(complexity).map(([key, value]) => ({
|
|
672
|
+
[7m [0m [91m ~~~~~[0m
|
|
673
|
+
|
|
674
|
+
[96msrc/utility/validate-complexity.ts[0m:[93m31[0m:[93m16[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'any' can't be used to index type 'Record<PasswordComplexityKey, (value?: number | undefined) => string>'.
|
|
675
|
+
|
|
676
|
+
[7m31[0m value: complexities[key](value),
|
|
677
|
+
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
64
678
|
|
|
65
|
-
[[
|
|
679
|
+
[[90m12:42:53 PM[0m] Found 8 errors. Watching for file changes.
|
|
66
680
|
|
|
67
|
-
[2J[3J[H[[
|
|
681
|
+
[2J[3J[H[[90m12:42:59 PM[0m] File change detected. Starting incremental compilation...
|
|
68
682
|
|
|
69
|
-
[[
|
|
683
|
+
[[90m12:42:59 PM[0m] Found 0 errors. Watching for file changes.
|
|
70
684
|
|
|
71
685
|
[41m[30m ELIFECYCLE [39m[49m [31mCommand failed.[39m
|