tsconfig.json 648 字节
Newer Older
A
Asher 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
{
  "compilerOptions": {
    "target": "es5",
    "module": "commonjs",
    "moduleResolution": "node",
    "strict": true,
    "noImplicitReturns": true,
    "noUnusedLocals": true,
    "forceConsistentCasingInFileNames": true,
    "outDir": "./out",
    "declaration": true,
    "experimentalDecorators": true,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "sourceMap": true,
A
Asher 已提交
16
    "tsBuildInfoFile": "./.cache/tsbuildinfo",
A
Asher 已提交
17
    "incremental": true,
18 19
    "typeRoots": ["./node_modules/@types", "./typings"],
    "downlevelIteration": true
A
Asher 已提交
20
  },
21 22
  "include": ["./src/**/*.ts"],
  "exclude": ["test", "lib", "ci", "doc"]
A
Asher 已提交
23
}