mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
e8ad51aaed
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
16 lines
303 B
JSON
16 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"
|
|
]
|
|
}
|