summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2018-08-15 09:40:30 -0700
committerRyan Dahl <ry@tinyclouds.org>2018-08-15 12:40:30 -0400
commit168d92f5d254a0671a1c34ca79d7b5600084b139 (patch)
treee299eb12f7341d6665b89302acd188f6117ac2c5 /tsconfig.json
parent0ce7b6e8701bf00ec181a72df030404aecb5bc4a (diff)
Use typescript strict mode (#505)
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": []
},