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