Files
psp_panel/tsconfig.json
T

33 lines
1.1 KiB
JSON
Raw Normal View History

2024-12-27 16:00:31 +03:00
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
2021-12-06 10:26:58 +03:00
{
2025-01-07 17:29:51 +03:00
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/out-tsc",
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"isolatedModules": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"moduleResolution": "bundler",
"importHelpers": true,
"target": "ES2022",
"module": "ES2022",
2025-07-24 18:25:37 +03:00
"paths": {
"@/*": [
"src/app/*"
]
}
2025-01-07 17:29:51 +03:00
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
2024-12-27 16:00:31 +03:00
}