From ba5c3280598da3c04a3bd1c1837e8b8dfd0b1dfb Mon Sep 17 00:00:00 2001 From: Jack Bates Date: Sun, 22 Mar 2020 14:22:50 -0700 Subject: [PATCH] [meteor] Enable noImplicitThis (#42924) --- types/meteor/tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/meteor/tsconfig.json b/types/meteor/tsconfig.json index 3fa72b7b96..34d7fd5277 100644 --- a/types/meteor/tsconfig.json +++ b/types/meteor/tsconfig.json @@ -6,7 +6,7 @@ "dom" ], "noImplicitAny": true, - "noImplicitThis": false, + "noImplicitThis": true, "strictNullChecks": false, "strictFunctionTypes": false, "baseUrl": "../", @@ -26,4 +26,4 @@ "test/server-render.tsx", "test/react-meteor-data-tests.tsx" ] -} \ No newline at end of file +}