aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorCaleb Mabry <caleb.mabry.15@cnu.edu>2022-03-26 13:13:39 -0400
committerCaleb Mabry <caleb.mabry.15@cnu.edu>2022-03-26 13:13:39 -0400
commitbda49615f436ec662d29eae91ef3265fcaa05e2f (patch)
treeaa066f1ae3168e35d49fe5c4159713981af3e14c /tsconfig.json
parentcfd118d3c733eff91dd74639937ecb8276929a76 (diff)
Allow strict
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 16f950d..9422b00 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -4,7 +4,7 @@
"allowJs": true,
"target": "es5",
"lib": ["DOM","DOM.Iterable"],
- "strict": false,
+ "strict": true,
"strictNullChecks": false, //document.getElementBy
"downlevelIteration": true
},