aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tsconfig.json10
1 files changed, 9 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 9f2fe64c..aea7ca43 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -4,7 +4,15 @@
"outDir": "dist",
"declaration": true,
"esModuleInterop": true,
- "allowJs": true
+ "allowJs": true,
+ "alwaysStrict": true,
+ // "strictNullChecks": true,
+ // "strictBindCallApply": true,
+ "strictFunctionTypes": true,
+ // "strictPropertyInitialization": true,
+ // "noImplicitAny": true,
+ // "noImplicitThis": true,
+ "useUnknownInCatchVariables": true
},
"include": ["src/**/*"],
"exclude": ["node_modules"]