mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
14 lines
396 B
JSON
14 lines
396 B
JSON
|
|
{
|
||
|
|
"extends": "../tsconfig.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
// Note: We use `bundler` here because compiler-cli is understood as ESM, but
|
||
|
|
// there are no explicit extensions. This is invalid. For our type-only usage this
|
||
|
|
// is fine.
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"paths": {
|
||
|
|
"@angular/compiler-cli/*": ["../../packages/compiler-cli/*"]
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|