mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Since v15, polyfills can be passed directly into angular.json. Let's use this opportunity to reduce the number of unecessary files. PR Close #48380
17 lines
246 B
JSON
17 lines
246 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./out-tsc/spec",
|
|
"types": [
|
|
"jasmine",
|
|
"node"
|
|
]
|
|
},
|
|
"files": [
|
|
"src/test.ts"
|
|
],
|
|
"include": [
|
|
"src/**/*.spec.ts",
|
|
"src/**/*.d.ts"
|
|
]
|
|
}
|