summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json3
1 files changed, 2 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json
index e48f0fdf7..e6bf1688b 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -4,10 +4,10 @@
"baseUrl": ".",
"module": "esnext",
"moduleResolution": "node",
- "noImplicitAny": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noLib": true,
+ "noUnusedLocals": true,
"paths": {
"*": ["*", "out/debug/*", "out/default/*", "out/release/*"]
},
@@ -15,6 +15,7 @@
"pretty": true,
"removeComments": true,
"sourceMap": true,
+ "strict": true,
"target": "esnext",
"types": []
},