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-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,
|
2026-03-29 22:18:28 -04:00
|
|
|
"target": "es2022",
|
|
|
|
|
"lib": ["es2022", "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": {
|
2024-10-03 02:41:52 +02:00
|
|
|
"strictInjectionParameters": true,
|
2026-08-06 00:26:40 +02:00
|
|
|
"extendedDiagnostics": {
|
|
|
|
|
"checks": {
|
|
|
|
|
"unusedStandaloneImports": "error"
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-08-11 21:24:33 +03:00
|
|
|
}
|
2022-09-05 09:52:20 +00:00
|
|
|
}
|