Enable strictNullChecks and noImplicitAny (#25724)

pull/25729/head
Michael Telatynski 2023-07-06 16:03:52 +01:00 committed by GitHub
parent 01a234aafa
commit 658e282929
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -7,7 +7,7 @@
"module": "commonjs", "module": "commonjs",
"moduleResolution": "node", "moduleResolution": "node",
"target": "es2016", "target": "es2016",
"noImplicitAny": false, "noImplicitAny": true,
"noUnusedLocals": true, "noUnusedLocals": true,
"sourceMap": false, "sourceMap": false,
"outDir": "./lib", "outDir": "./lib",
@ -16,6 +16,7 @@
"lib": ["es2020", "dom", "dom.iterable"], "lib": ["es2020", "dom", "dom.iterable"],
"alwaysStrict": true, "alwaysStrict": true,
"strictBindCallApply": true, "strictBindCallApply": true,
"strictNullChecks": true,
"noImplicitThis": true "noImplicitThis": true
}, },
"include": [ "include": [