2021-09-23 07:14:24 +00:00
|
|
|
// #docplaster ...
|
2023-07-04 09:47:42 +00:00
|
|
|
/* To learn more about this file see: https://angular.io/guide/typescript-configuration. */
|
2021-09-23 07:14:24 +00:00
|
|
|
// #docregion angular-compiler-options-app
|
|
|
|
|
{
|
|
|
|
|
"extends": "./tsconfig.json",
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"outDir": "./out-tsc/app",
|
|
|
|
|
// #enddocregion angular-compiler-options-app
|
|
|
|
|
"types": []
|
|
|
|
|
},
|
|
|
|
|
"files": [
|
2022-10-31 10:55:29 +00:00
|
|
|
"src/main.ts"
|
2021-09-23 07:14:24 +00:00
|
|
|
],
|
|
|
|
|
"include": [
|
|
|
|
|
"src/**/*.d.ts"
|
|
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"src/test.ts",
|
|
|
|
|
"src/**/*.spec.ts",
|
|
|
|
|
"src/**/*-specs.ts",
|
|
|
|
|
"src/**/*.avoid.ts",
|
|
|
|
|
"src/**/*.0.ts",
|
|
|
|
|
"src/**/*.1.ts",
|
|
|
|
|
"src/**/*.1b.ts",
|
|
|
|
|
"src/**/*.2.ts",
|
|
|
|
|
"src/**/*.3.ts",
|
|
|
|
|
"src/**/*.4.ts",
|
|
|
|
|
"src/**/*.5.ts",
|
|
|
|
|
"src/**/*.6.ts",
|
|
|
|
|
"src/**/*.7.ts",
|
|
|
|
|
"src/**/testing"
|
|
|
|
|
],
|
|
|
|
|
// #docregion angular-compiler-options-app
|
|
|
|
|
"angularCompilerOptions": {
|
|
|
|
|
"strictTemplates": true,
|
|
|
|
|
"preserveWhitespaces": true,
|
|
|
|
|
// #enddocregion angular-compiler-options-app
|
|
|
|
|
"sourceMap": true,
|
2023-09-15 22:27:28 +00:00
|
|
|
"declaration": false,
|
2021-09-23 07:14:24 +00:00
|
|
|
// #docregion angular-compiler-options-app
|
2023-09-15 22:27:28 +00:00
|
|
|
"disableTypeScriptVersionCheck": true
|
2022-09-15 04:12:53 +00:00
|
|
|
}
|
2021-09-23 07:14:24 +00:00
|
|
|
}
|
|
|
|
|
// #enddocregion angular-compiler-options-app
|