From 2702dfceaf92e7781039937f1e0a4b9c4cf111fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hu=C3=A1ng=20J=C3=B9nli=C3=A0ng?= Date: Thu, 26 May 2022 09:01:40 -0400 Subject: [PATCH] enable noImplicitAny --- tsconfig.base.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.base.json b/tsconfig.base.json index af2501b34cc3..64b95c92c311 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -12,6 +12,7 @@ "isolatedModules": true, "skipLibCheck": true, "resolveJsonModule": true, - "noImplicitThis": true + "noImplicitThis": true, + "noImplicitAny": true } }