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

10
    , "noEmitOnError": true
11
    , "noUnusedLocals": true
12 13 14
    , "noImplicitReturns": true
    , "noFallthroughCasesInSwitch": true
    , "strictNullChecks": true
15 16
    , "experimentalDecorators": true
    , "emitDecoratorMetadata": true
17

18
    , "noImplicitAny": true
19
    , "noUnusedParameters": false
20
    , "noImplicitThis": false
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
21
    , "traceResolution": false
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
22
    , "lib": [
23
        "esnext"
24
      , "dom"
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
25
    ]
26 27
  }
  , "exclude": [
28 29
      "node_modules/"
    , "dist/"
30
  ]
31
  , "include": [
Huan (李卓桓)'s avatar
wip...  
Huan (李卓桓) 已提交
32
       "bin/*.ts"
33 34
     , "scripts/**/*.ts"
     , "examples/**/*.ts"
35
     , "src/**/*.ts"
36
     , "tests/**/*.spec.ts"
37
     , "bot/**/*.ts"
38
     , "app/**/*.ts"
39
  ]
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
40
}