tsconfig.json 502 B

1234567891011121314151617181920212223242526
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "target": "es6",
  5. "outDir": "out",
  6. "lib": [
  7. "es6"
  8. ],
  9. "sourceMap": true,
  10. "rootDir": "src",
  11. "strict": true,
  12. "noImplicitReturns": true,
  13. "noFallthroughCasesInSwitch": true,
  14. "noUnusedParameters": true,
  15. "noImplicitAny": true,
  16. "removeComments": true,
  17. "noUnusedLocals": true,
  18. "noImplicitThis": true,
  19. "inlineSourceMap": false,
  20. "preserveConstEnums": true,
  21. "strictNullChecks": true
  22. },
  23. "exclude": [
  24. "node_modules", "tmp"
  25. ]
  26. }