mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-14 09:37:18 +08:00
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.
15 lines
375 B
JSON
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"]
|
|
}
|
|
}
|