From 18da7389504f0722cbf5dc151bd536854c2fde57 Mon Sep 17 00:00:00 2001 From: Nicolas Merget Date: Thu, 1 Aug 2024 07:47:39 +0200 Subject: [PATCH] fix: issue with noImplicitAny --- output/angular/tsconfig.json | 3 ++- showcases/angular-showcase/tsconfig.json | 1 + showcases/angular-ssr-showcase/tsconfig.json | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/output/angular/tsconfig.json b/output/angular/tsconfig.json index 40a331e39a1..f9f07a0bbde 100644 --- a/output/angular/tsconfig.json +++ b/output/angular/tsconfig.json @@ -24,7 +24,8 @@ "lib": ["es2020", "dom"], "declarationMap": false, "allowSyntheticDefaultImports": true, - "useDefineForClassFields": false + "useDefineForClassFields": false, + "noImplicitAny": false }, "angularCompilerOptions": { "enableI18nLegacyMessageIdFormat": false, diff --git a/showcases/angular-showcase/tsconfig.json b/showcases/angular-showcase/tsconfig.json index bd270b530db..088c0b9aba5 100644 --- a/showcases/angular-showcase/tsconfig.json +++ b/showcases/angular-showcase/tsconfig.json @@ -5,6 +5,7 @@ "forceConsistentCasingInFileNames": true, "strict": true, "noImplicitOverride": true, + "noImplicitAny": false, "noPropertyAccessFromIndexSignature": true, "noImplicitReturns": true, "noFallthroughCasesInSwitch": true, diff --git a/showcases/angular-ssr-showcase/tsconfig.json b/showcases/angular-ssr-showcase/tsconfig.json index a6c3708c614..1083f8fd1c1 100644 --- a/showcases/angular-ssr-showcase/tsconfig.json +++ b/showcases/angular-ssr-showcase/tsconfig.json @@ -4,6 +4,7 @@ "compilerOptions": { "outDir": "./dist/out-tsc", "strict": true, + "noImplicitAny": false, "noImplicitOverride": true, "noPropertyAccessFromIndexSignature": true, "noImplicitReturns": true,