tsconfig.json 1.0 KB
Newer Older
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
1
{
2
  "compilerOptions": {
3
      "target": "es6"
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
4

5 6 7 8 9 10 11
    , "module"          : "commonjs"
    , "outDir"          : "dist"
    , "traceResolution" : false
    , "noLib"           : false
    , "declaration"     : true
    , "sourceMap"       : true
    , "skipLibCheck"    : true
12

13 14
    , "emitDecoratorMetadata"  : true
    , "experimentalDecorators" : true
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
15

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
16
    , "lib": [
17
      "esnext"
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
18
    ]
19 20 21 22 23 24 25 26 27 28

    , "strict"                     : true
    , "noEmitOnError"              : true
    , "noUnusedLocals"             : true
    , "noImplicitReturns"          : true
    , "noFallthroughCasesInSwitch" : true
    , "strictNullChecks"           : true
    , "noImplicitAny"              : true
    , "noUnusedParameters"         : true
    , "noImplicitThis"             : true
29 30
  }
  , "exclude": [
31 32
      "node_modules/"
    , "dist/"
33
    , "tests/fixtures/"
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
}