2020-01-27 18:40:18 +00:00
|
|
|
{
|
2020-08-11 18:24:33 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"sourceMap": true,
|
2025-06-13 09:08:14 +00:00
|
|
|
"inlineSources": true,
|
2021-11-07 23:57:52 +00:00
|
|
|
"declaration": true,
|
2023-12-04 19:44:53 +00:00
|
|
|
"strict": true,
|
2023-09-11 11:21:09 +00:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noPropertyAccessFromIndexSignature": true,
|
2020-08-11 18:24:33 +00:00
|
|
|
"downlevelIteration": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"module": "esnext",
|
2025-09-29 14:32:10 +00:00
|
|
|
"moduleResolution": "bundler",
|
2021-12-16 07:00:43 +00:00
|
|
|
"esModuleInterop": true,
|
2020-08-11 18:24:33 +00:00
|
|
|
"importHelpers": true,
|
2021-11-07 23:57:52 +00:00
|
|
|
"target": "es2020",
|
2024-01-19 19:29:24 +00:00
|
|
|
"lib": ["es2020", "dom", "dom.iterable"],
|
2025-05-13 19:59:40 +00:00
|
|
|
"types": ["chrome"],
|
2025-07-10 14:34:04 +00:00
|
|
|
// TODO: Have an IDE specific tsconfig file
|
2025-07-09 16:15:52 +00:00
|
|
|
"paths": {
|
|
|
|
|
"@angular/*": ["../packages/*/index"]
|
|
|
|
|
}
|
2020-08-11 18:24:33 +00:00
|
|
|
},
|
|
|
|
|
"angularCompilerOptions": {
|
2023-12-04 19:44:53 +00:00
|
|
|
"strictTemplates": true,
|
2024-10-03 00:41:52 +00:00
|
|
|
"strictInjectionParameters": true,
|
|
|
|
|
"unusedStandaloneImports": "error"
|
2020-08-11 18:24:33 +00:00
|
|
|
}
|
2022-09-05 09:52:20 +00:00
|
|
|
}
|