more strict typescript

This commit is contained in:
Anton Lavrenov
2023-08-28 09:23:57 -05:00
parent cd2e17338a
commit d33b8e944b
21 changed files with 345 additions and 747 deletions

View File

@@ -2,14 +2,14 @@
"compilerOptions": {
"outDir": "lib",
"module": "CommonJS",
"target": "ES2015",
"target": "ES2018",
// "sourceMap": true,
"noEmitOnError": true,
"lib": ["ES2015", "dom"],
"moduleResolution": "node",
"declaration": true,
"removeComments": false,
"strictNullChecks": false,
"strictNullChecks": true,
},
"include": ["./src/**/*.ts"]
}