Compile build in strict mode

This commit is contained in:
Matt Bierner
2018-10-03 15:49:52 -07:00
parent 494395f62f
commit 5de9c9bf8b
8 changed files with 3 additions and 85 deletions
+2 -2
View File
@@ -2,7 +2,6 @@
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"noImplicitAny": true,
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": false,
@@ -13,7 +12,8 @@
// type checking so that JavaScript file are not transpiled
"allowJs": true,
"checkJs": true,
"strictNullChecks": true
"strict": true,
"noUnusedLocals": true
},
"exclude": [
"node_modules/**"