tsconfig.json 527 B

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