tsconfig.json 289 B

123456789101112131415
  1. {
  2. "compilerOptions": {
  3. "lib": ["DOM", "ESNext"],
  4. "target": "ESNext",
  5. "module": "ESNext",
  6. "moduleResolution": "Node",
  7. "removeComments": true
  8. },
  9. "exclude": [
  10. "node_modules",
  11. "tests",
  12. "build",
  13. "dist"
  14. ]
  15. }