tsconfig.json 656 字节
Newer Older
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
1
{
2
  "compilerOptions": {
3
    "target": "es6"
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
4
    , "module": "commonjs"
5
    , "moduleResolution": "node" // typescript 2.0.3 bug compatible
6
    , "outDir": "dist"
7
    , "declaration": true
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
8
    // , "outFile": "dist/wechaty.lib.js"
9

10
    , "sourceMap": true
11 12 13 14 15 16 17 18
    , "noUnusedLocals": true

    , "noUnusedParameters": false
    , "strictNullChecks": false
    , "noImplicitAny": false
    , "noImplicitThis": false
    , "noImplicitReturns": false
    , "noFallthroughCasesInSwitch": false
19 20
  }
  , "exclude": [
21
      "node_modules"
22 23
    , "dist"
  ]
24
  , "include": [
25
       "bin/*.ts"
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
26
     , "example/*.ts"
27 28
     , "src/**/*.ts"
     , "test/**/*.spec.ts"
29
  ]
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
30
}