tsconfig.json 341 字节
Newer Older
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
1
{
2
  "compilerOptions": {
3
    "target": "es6"
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
4
    , "moduleResolution": "node"
5
    , "outDir": "dist"
6
    , "noImplicitAny": false
7
    , "strictNullChecks": true
8 9 10
    , "sourceMap": true
  }
  , "exclude": [
11
      "node_modules"
12 13
    , "dist"
  ]
14 15 16 17 18 19
  , "files": [
      "src/*.ts"
    , "bin/*.ts"
    , "example/*.ts"
    // , "test/*.ts"
  ]
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
20
}