|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /* To learn more about this file see: https://angular.io/config/tsconfig. */
- {
- "compileOnSave": false,
- "compilerOptions": {
- "outDir": "./dist/out-tsc",
- "forceConsistentCasingInFileNames": true,
- "strict": true,
- "noImplicitOverride": true,
- "noPropertyAccessFromIndexSignature": true,
- "noImplicitReturns": true,
- "noFallthroughCasesInSwitch": true,
- "skipLibCheck": true,
- "esModuleInterop": true,
- "sourceMap": true,
- "declaration": false,
- "experimentalDecorators": true,
- "moduleResolution": "node",
- "importHelpers": true,
- "target": "ES2022",
- "module": "ES2022",
- "useDefineForClassFields": false,
- "lib": [
- "ES2022",
- "dom"
- ],
- "allowSyntheticDefaultImports": true,
- "baseUrl": "./",
- "paths": {
- "@shared": [
- "src/app/shared/index"
- ],
- "@core": [
- "src/app/core/index"
- ],
- "@env/*": [
- "src/environments/*"
- ],
- "@_mock": [
- "_mock/index"
- ]
- }
- },
- "angularCompilerOptions": {
- "enableI18nLegacyMessageIdFormat": false,
- "strictInjectionParameters": true,
- "strictInputAccessModifiers": true,
- "strictTemplates": true
- }
- }
|