From 8c24a79852ad43377e0cf4fd3a081316b678b51c Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Fri, 2 Nov 2018 00:14:49 +0100 Subject: [PATCH] tsconfig: Enable `noImplicitAny` again --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index d7c928bd8..425b264e7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,7 +4,7 @@ "allowJs": true, "moduleResolution": "node", "allowSyntheticDefaultImports": true, - "noImplicitAny": false, + "noImplicitAny": true, "noImplicitThis": true, "alwaysStrict": true, "strictNullChecks": true,