From 82b6ab4b579c4f911542c2f019d4e6ff8328c290 Mon Sep 17 00:00:00 2001 From: Nathan Shively-Sanders Date: Mon, 19 Jun 2017 15:56:10 -0700 Subject: [PATCH] Don't use --strict to make tsconfig 2.0 compatible --- types/collections/tsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/types/collections/tsconfig.json b/types/collections/tsconfig.json index da6509eb06..6b5293a242 100644 --- a/types/collections/tsconfig.json +++ b/types/collections/tsconfig.json @@ -7,7 +7,10 @@ "module": "commonjs", "target": "es6", "lib": ["es6"], - "strict": true, + "forceConsistentCasingInFileNames": true, + "noImplicitAny": true, + "noImplicitThis": true, + "strictNullChecks": true, "noEmit": true } }