Turn on strictNullChecks in tsconfig
This commit is contained in:
parent
ef7bdad528
commit
adf1ca81bd
1 changed files with 6 additions and 2 deletions
|
@ -6,7 +6,7 @@
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"noImplicitAny": true,
|
"noImplicitAny": true,
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"strictNullChecks": false,
|
"strictNullChecks": true,
|
||||||
"forceConsistentCasingInFileNames": true,
|
"forceConsistentCasingInFileNames": true,
|
||||||
"sourceMap": true,
|
"sourceMap": true,
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
|
@ -26,5 +26,9 @@
|
||||||
"."
|
"."
|
||||||
],
|
],
|
||||||
"exclude": [
|
"exclude": [
|
||||||
]
|
".git",
|
||||||
|
"**/node_modules/*",
|
||||||
|
"dist",
|
||||||
|
"pack"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue