From 39d37b3c853776471bc7845de903a497728f969a Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Fri, 1 Nov 2019 14:04:55 +0100 Subject: [PATCH] fix: disable noImplicitAny https://github.com/angular/angular/issues/33528 --- frontend/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index 48ebc19be..14add12d7 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -9,7 +9,7 @@ "module": "esnext", "moduleResolution": "node", "emitDecoratorMetadata": true, - "noImplicitAny": true, + "noImplicitAny": false, // https://github.com/angular/angular/issues/33528 "strictNullChecks": false, // would be nice, but requires a big effort "strictFunctionTypes": true, "noImplicitThis": true,