From f753befe57dff2b86fe851827a58d30d5e1d0d50 Mon Sep 17 00:00:00 2001 From: rafaelsouzaf Date: Mon, 18 Dec 2017 20:52:40 -0300 Subject: [PATCH] Add "strict" compiler options. Enabling --strict enables: --noImplicitAny, --noImplicitThis, --alwaysStrict, --strictNullChecks and --strictFunctionTypes. --- types/iron/tsconfig.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/types/iron/tsconfig.json b/types/iron/tsconfig.json index bddeeac5c0..090685c604 100644 --- a/types/iron/tsconfig.json +++ b/types/iron/tsconfig.json @@ -4,10 +4,7 @@ "lib": [ "es6" ], - "noImplicitAny": true, - "noImplicitThis": true, - "strictNullChecks": true, - "strictFunctionTypes": true, + "strict": true, "baseUrl": "../", "typeRoots": [ "../"