angular-cli/tsconfig-test-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

15 lines
375 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-build-esm.json",
"compilerOptions": {
"sourceMap": false,
"inlineSourceMap": true,
"inlineSources": true,
"types": ["node", "jasmine"]
}
}