mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
* Adjusts tests to no longer rely on CommonJS features. Switches them to ESM * Updates test initialization files to not double-initialize Jasmine now that bootstrap files are loaded after Jasmine. The `jasmine.boot` setup was hacky from `rules_nodejs` and will break in the future regardless if we e.g. use `rules_js` with actual unmodified `jasmine`. PR Close #48521
41 lines
877 B
JSON
41 lines
877 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"target": "es2020",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"outDir": "build",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"declaration": false,
|
|
"noEmitOnError": false,
|
|
"stripInternal": false,
|
|
"strict": true,
|
|
"noImplicitOverride": true,
|
|
"lib": [
|
|
"es5",
|
|
"dom",
|
|
"es2015.iterable",
|
|
"es2015.promise",
|
|
"es2015.symbol",
|
|
"es2015.symbol.wellknown"
|
|
],
|
|
"typeRoots": ["node_modules/@types"]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"bazel-out",
|
|
"build",
|
|
"build-esm",
|
|
"build-esm-2015",
|
|
"dist",
|
|
"lib/closure",
|
|
"lib/node/**",
|
|
"lib/mix/**",
|
|
"test/node/**",
|
|
"test/node_bluebird_entry_point.ts",
|
|
"test/node_entry_point.ts",
|
|
"test/node_error_entry_point.ts",
|
|
"test/node_tests.ts"
|
|
]
|
|
}
|