From 0db40cd545e827033c05ef325faadee92de265b1 Mon Sep 17 00:00:00 2001 From: Jack Bates Date: Mon, 9 Mar 2020 11:37:24 -0700 Subject: [PATCH] [react] Enable noImplicitThis (#42940) --- types/react/tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/react/tsconfig.json b/types/react/tsconfig.json index 6106c66903..0dd4d56565 100644 --- a/types/react/tsconfig.json +++ b/types/react/tsconfig.json @@ -15,7 +15,7 @@ "es6" ], "noImplicitAny": true, - "noImplicitThis": false, + "noImplicitThis": true, "strictNullChecks": true, "strictFunctionTypes": true, "baseUrl": "../", @@ -27,4 +27,4 @@ "forceConsistentCasingInFileNames": true, "jsx": "preserve" } -} \ No newline at end of file +}