mirror of
https://github.com/angular/angular-cli.git
synced 2025-06-01 10:46:14 +08:00
The `ng-dev` tool is now strict ESM. Config loading needs to be updated to also emit `.mjs` with `ts-node` (this cannot happen dynamically as ESM Node loading cannot be patched by ts-node at runtime).
11 lines
185 B
JSON
11 lines
185 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "Node16",
|
|
"moduleResolution": "Node16",
|
|
"noEmit": true
|
|
},
|
|
"include": ["**/*.mts"],
|
|
"exclude": []
|
|
}
|