tsconfig.json 644 字节
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"
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
7
    // , "outFile": "dist/wechaty.lib.js"
8

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

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