From 860e500d9395b6f5bfb6be1f84f846bb0be32e15 Mon Sep 17 00:00:00 2001 From: Martin Hochel Date: Mon, 27 Mar 2017 20:01:25 +0200 Subject: [PATCH] feat: add strong type checking --- tsconfig.base.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tsconfig.base.json b/tsconfig.base.json index 4cf08c3..e266f3f 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -7,6 +7,10 @@ "es2015", "dom" ], + "noUnusedLocals": true, + "strictNullChecks": true, + "noImplicitAny": true, + "noImplicitThis": true, "allowSyntheticDefaultImports": true, "suppressImplicitAnyIndexErrors": true, "forceConsistentCasingInFileNames": true,