Skip to content

Commit

Permalink
fix: issue with noImplicitAny
Browse files Browse the repository at this point in the history
  • Loading branch information
nmerget committed Aug 1, 2024
1 parent f013f9e commit 18da738
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion output/angular/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"lib": ["es2020", "dom"],
"declarationMap": false,
"allowSyntheticDefaultImports": true,
"useDefineForClassFields": false
"useDefineForClassFields": false,
"noImplicitAny": false
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
Expand Down
1 change: 1 addition & 0 deletions showcases/angular-showcase/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitOverride": true,
"noImplicitAny": false,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
Expand Down
1 change: 1 addition & 0 deletions showcases/angular-ssr-showcase/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"compilerOptions": {
"outDir": "./dist/out-tsc",
"strict": true,
"noImplicitAny": false,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
Expand Down

0 comments on commit 18da738

Please sign in to comment.