mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This TS config doc is now at https://angular.io/guide/typescript-configuration PR Close #50933
17 lines
394 B
JSON
17 lines
394 B
JSON
/* To learn more about this file see: https://angular.io/guide/typescript-configuration. */
|
|
{
|
|
"extends": "./tsconfig.app.json",
|
|
"compilerOptions": {
|
|
"outDir": "./out-tsc/server",
|
|
"target": "es2016",
|
|
"types": [
|
|
"node"
|
|
]
|
|
},
|
|
"files": [
|
|
"src/main.server.ts"
|
|
],
|
|
"angularCompilerOptions": {
|
|
"entryModule": "./src/app/app.server.module#AppServerModule"
|
|
}
|
|
}
|