Put Typescript in "strict" mode, fix or ignore errors

This commit is contained in:
Alex Gleason
2022-03-24 14:27:27 -05:00
parent 84d7d2ee38
commit 2940a3ff4d
28 changed files with 177 additions and 114 deletions

View File

@ -2,14 +2,7 @@
"compilerOptions": {
"baseUrl": "app/",
"sourceMap": true,
"alwaysStrict": true,
"strictNullChecks": false,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": false,
"noImplicitAny": true,
"noImplicitThis": true,
"useUnknownInCatchVariables": true,
"strict": true,
"module": "es6",
"target": "es5",
"jsx": "react",