Skip to content

Commit d0763d9

Browse files
Remove deprecated noImplicitUseStrict build option (GH-61)
2 parents f796cd4 + 6e856dd commit d0763d9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

tox.ini

+3
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,20 @@ commands =
1010
npm install
1111
npm install -D @types/react@^16.0.0
1212
npm test
13+
npm run build
1314

1415
[testenv:rc17]
1516
allowlist_externals = npm
1617
commands =
1718
npm install
1819
npm install -D @types/react@^17.0.0
1920
npm test
21+
npm run build
2022

2123
[testenv:rc18]
2224
allowlist_externals = npm
2325
commands =
2426
npm install
2527
npm install -D @types/react@^18.0.0
2628
npm test
29+
npm run build

tsconfig.json

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"noImplicitAny": true,
44
"noUnusedLocals": true,
55
"noUnusedParameters": true,
6-
"noImplicitUseStrict": true,
76
"strictNullChecks": true,
87
"module": "esnext",
98
"moduleResolution": "node",

0 commit comments

Comments
 (0)