angular-cli/tsconfig-build-esm.json
Paul Gschwendtner af25379a3b build: migrate @angular/ssr tests to rules_js
Migrates the SSR tesst to run natively via `rules_js`. Notably, we still
need the bundling in between as the tests and SSR plain code is not
valid ESM technically; due to lack of extensions.

We'll need to revisit this in the future, or at the very least come up
with a `rules_js`-variant of the `spec_bundle`; but for this is
sufficient and unblocks other packages.
2025-01-23 15:27:55 +01:00

19 lines
506 B
JSON

/**
* Root tsconfig file for use building all Angular packages. Note there is no rootDir
* and therefore any tsconfig in the package directory will need to define its own
* rootDir.
*/
{
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "esnext",
"target": "es2022",
"lib": ["es2020"],
// don't auto-discover @types/node, it results in a ///<reference in the .d.ts output
"types": [],
"sourceMap": true,
"inlineSources": true,
"importHelpers": true
}
}