Skip to content

Commit 1c5db34

Browse files
committed
build: enable strict TypeScript compilation
The `noImplicitAny`, `noImplicitThis`, and `strictNullChecks` options are included in the `strict` option and were also removed to simplify the configuration.
1 parent 3de6f48 commit 1c5db34

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tsconfig.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,12 @@
55
"moduleResolution": "node",
66
"noEmitOnError": true,
77
"noFallthroughCasesInSwitch": true,
8-
"noImplicitAny": true,
9-
"noImplicitThis": true,
108
"noUnusedParameters": false,
119
"noUnusedLocals": false,
1210
"outDir": "./dist",
1311
"rootDir": ".",
1412
"skipLibCheck": true,
15-
"strictNullChecks": true,
13+
"strict": true,
1614
"target": "es2018",
1715
"lib": [
1816
"es2018"

0 commit comments

Comments
 (0)