angular-cli/.ng-dev/tsconfig.json
Paul Gschwendtner 9fafb2e125 build: update ng-dev setup to work with new ESM version
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).
2022-06-17 19:01:03 +02:00

11 lines
185 B
JSON

{
"extends": "../tsconfig.json",
"compilerOptions": {
"module": "Node16",
"moduleResolution": "Node16",
"noEmit": true
},
"include": ["**/*.mts"],
"exclude": []
}