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

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