tsconfig.json 444 B

12345678910111213141516
  1. {
  2. "compilerOptions": {
  3. "outDir": "./dist",
  4. "allowJs": true,
  5. "target": "ES5",
  6. "noImplicitReturns": true, // 函数末尾返回值
  7. "noFallthroughCasesInSwitch": true, // switch case直接break
  8. "allowUnreachableCode": true, // 未执行代码
  9. "allowUnusedLabels": true, // 未执行标签
  10. "strictNullChecks": true, // 空检查
  11. "noImplicitAny": false, // 隐式any检查
  12. },
  13. "include": [
  14. "./src"
  15. ]
  16. }