tsconfig.json 863 字节
Newer Older
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
1
{
2
  "compilerOptions": {
3
    "target": "es6"
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
4
    , "module": "commonjs"
5
    , "outDir": "dist"
6
    , "strict": true
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
7 8 9

    , "experimentalDecorators": true
    , "emitDecoratorMetadata": true
10
    , "declaration": true
11
    , "sourceMap": true
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
12
    , "traceResolution": false
13
    , "noEmitOnError": true
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
14

15 16 17 18 19 20 21 22 23
    , "noUnusedLocals": true
    , "noImplicitReturns": true
    , "noFallthroughCasesInSwitch": true
    , "strictNullChecks": true

    , "noImplicitAny": false
    , "noUnusedParameters": false
    , "noImplicitThis": false

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
24 25
    , "noLib": false
    , "skipLibCheck": true
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
26
    , "lib": [
27
      "esnext", "dom"
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
28
    ]
29 30
  }
  , "exclude": [
31 32
      "node_modules/"
    , "dist/"
33
  ]
34
  , "include": [
35 36 37
       "app/**/*.ts"
     , "bin/*.ts"
     , "bot/**/*.ts"
38
     , "examples/**/*.ts"
39
     , "scripts/**/*.ts"
40
     , "src/**/*.ts"
41
     , "tests/**/*.spec.ts"
42
  ]
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
43
}