Files
psp_panel/tsconfig.json
T

31 lines
957 B
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
{
2024-12-27 16:00:31 +03:00
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/out-tsc",
2024-12-30 12:00:11 +03:00
"strict": false,
2024-12-27 16:00:31 +03:00
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"isolatedModules": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"moduleResolution": "bundler",
"importHelpers": true,
"target": "ES2022",
2024-12-30 17:41:32 +03:00
"module": "ES2022",
"paths": {
"@/*": ["./*"]
}
2024-12-27 16:00:31 +03:00
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
2023-07-28 14:42:29 +03:00
}
2024-12-27 16:00:31 +03:00
}