mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
cc5d3b75e2
* 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
19 lines
536 B
JSON
19 lines
536 B
JSON
{
|
|
"compilerOptions": {
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"experimentalDecorators": true,
|
|
"outDir": "./build",
|
|
"rootDir": ".",
|
|
"target": "es2020",
|
|
"module": "Node16",
|
|
"moduleResolution": "node",
|
|
"noEmitOnError": false,
|
|
"stripInternal": false,
|
|
"strict": true,
|
|
"lib": ["es5", "dom", "es2015.collection", "es2015.iterable", "es2015.promise"]
|
|
},
|
|
"files": ["./type.test.ts", "./node_modules/zone.js/zone.d.ts"]
|
|
}
|