mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This commit updates the platform-server tests to use the new application builder, with this change we also have to remove the sizechecks since esbuild will do code motion and split the code into multiple chunks example `chunk-QUKLKPSE.js`. PR Close #53205
15 lines
303 B
JSON
15 lines
303 B
JSON
/* To learn more about this file see: https://angular.io/guide/typescript-configuration. */
|
|
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "../../out-tsc/app",
|
|
"types": []
|
|
},
|
|
"files": [
|
|
"src/main.ts",
|
|
"server.ts"
|
|
],
|
|
"include": [
|
|
"src/**/*.d.ts"
|
|
]
|
|
}
|