Turn on strictNullChecks in tsconfig

This commit is contained in:
Chen-I Lim 2020-11-12 17:31:54 -08:00
parent ef7bdad528
commit adf1ca81bd

View file

@ -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"
]
} }