tsconfig.json 880 字节
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 10
    , "traceResolution": false
    , "noLib": false

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

17 18 19 20 21
    , "noUnusedLocals": true
    , "noImplicitReturns": true
    , "noFallthroughCasesInSwitch": true
    , "strictNullChecks": true

22 23 24
    , "noImplicitAny": true
    , "noUnusedParameters": true
    , "noImplicitThis": true
25

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