From 58b243cf978ccb13f4287a7baa5777e263827162 Mon Sep 17 00:00:00 2001 From: Blake Embrey Date: Tue, 17 Apr 2018 17:09:05 +0900 Subject: [PATCH] Use `strict` in `tsconfig.json` --- tsconfig.json | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 143c2c32d..447b83c08 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,13 +5,9 @@ "rootDir": "src", "outDir": "dist", "module": "commonjs", - "declaration": true, - "noImplicitAny": true, - "strictNullChecks": true, - "removeComments": true, - "noUnusedLocals": true, - "noUnusedParameters": true, "moduleResolution": "node", + "strict": true, + "declaration": true, "sourceMap": true, "inlineSources": true, "types": ["node", "mocha"]