Project

General

Profile

1
{
2
  "extends": "../tsconfig.json",
3
  "compilerOptions": {
4
    "outDir": "../out-tsc/app",
5
    "baseUrl": "./",
6
    // Set the module format to "commonjs":
7
    "module": "commonjs",
8
    "types": [
9
      "node"
10
    ]
11
  },
12
  "exclude": [
13
    "test.ts",
14
    "**/*.spec.ts"
15
  ],
16
  // Add "angularCompilerOptions" with the AppServerModule you wrote
17
  // set as the "entryModule".
18
  "angularCompilerOptions": {
19
    "entryModule": "app/app.server.module#AppServerModule"
20
  }
21
}
(8-8/8)