tsconfig.json 642 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "compilerOptions": {
  3. "removeComments": false,
  4. "preserveConstEnums": true,
  5. "sourceMap": true,
  6. "declaration": true,
  7. "noImplicitAny": true,
  8. "noImplicitReturns": true,
  9. "suppressImplicitAnyIndexErrors": true,
  10. "strictNullChecks": true,
  11. "noUnusedLocals": true,
  12. "noImplicitThis": true,
  13. "noUnusedParameters": true,
  14. "module": "commonjs",
  15. "moduleResolution": "node",
  16. "pretty": true,
  17. "target": "ES5",
  18. "outDir": "lib",
  19. "lib":[
  20. "es2015"
  21. ]
  22. },
  23. "formatCodeOptions": {
  24. "indentSize": 2,
  25. "tabSize": 2
  26. },
  27. "exclude": [
  28. "node_modules",
  29. "lib",
  30. "test"
  31. ]
  32. }