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
309 B
JSON
17 lines
309 B
JSON
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./out-tsc/spec",
|
|
"types": [
|
|
"jasmine"
|
|
]
|
|
},
|
|
"files": [
|
|
"src/test.ts"
|
|
],
|
|
"include": [
|
|
"src/**/*.spec.ts",
|
|
"src/**/*.d.ts"
|
|
]
|
|
}
|