tsconfig.json 726 Bytes
Newer Older
Deshui Yu's avatar
Deshui Yu committed
1
{
2
3
4
5
6
7
8
  "include": [
      "common/**/*",
      "core/**/*",
      "rest_server/**/*",
      "training_service/**/*",
      "main.ts"
  ],
Deshui Yu's avatar
Deshui Yu committed
9
  "compilerOptions": {
10
11
12
13
    "allowUnreachableCode": false,
    "noImplicitReturns": true,
    "noPropertyAccessFromIndexSignature": true,
    "noUnusedParameters": true,
Deshui Yu's avatar
Deshui Yu committed
14
15
    "strict": true,
    "baseUrl": ".",
16
    "module": "CommonJS",
Deshui Yu's avatar
Deshui Yu committed
17
18
19
    "typeRoots": [
      "node_modules/@types",
      "types"
20
21
22
23
24
25
26
27
28
29
30
    ],
    "outDir": "dist",
    "removeComments": true,
    "allowSyntheticDefaultImports": true,
    "esModuleInterop": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "target": "ESNext",
    "incremental": true,
    "tsBuildInfoFile": "./.tsbuildinfo"
  }
31
}