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