Skip to content

Commit

Permalink
update tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
xinthose committed Dec 10, 2023
1 parent 025dd4c commit 37202ad
Showing 1 changed file with 14 additions and 21 deletions.
35 changes: 14 additions & 21 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,40 +1,33 @@
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"module": "es6",
"moduleResolution": "node",
"importHelpers": true,
"target": "es6",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es6",
"dom"
],
"target": "ESNext",
"module": "ESNext",
"lib": ["ESNext", "dom"],
"resolveJsonModule": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"strictPropertyInitialization": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noImplicitReturns": true
"types": ["node"]
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": false
},
"exclude": [
"node_modules",
"**/*.spec.ts"
]
"strictTemplates": true
}
}

0 comments on commit 37202ad

Please sign in to comment.