tsconfig.json 869 字节
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

14
    , "noEmitOnError": true
15
    , "noUnusedLocals": true
16 17
    , "noImplicitReturns": true
    , "noFallthroughCasesInSwitch": true
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
18 19 20
    , "noImplicitAny": true
    , "noUnusedParameters": true
    , "noImplicitThis": true
21
    , "strictNullChecks": true
22

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
23 24 25

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