22 lines
469 B
JSON
22 lines
469 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "../out-tsc/app",
|
|
"baseUrl": "./",
|
|
// Set the module format to "commonjs":
|
|
"module": "commonjs",
|
|
"types": [
|
|
"node"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"test.ts",
|
|
"**/*.spec.ts"
|
|
],
|
|
// Add "angularCompilerOptions" with the AppServerModule you wrote
|
|
// set as the "entryModule".
|
|
"angularCompilerOptions": {
|
|
"entryModule": "app/app.server.module#AppServerModule"
|
|
}
|
|
}
|