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