.gitignore 482 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # Dependencies
  2. node_modules/
  3. # Build output
  4. dist/
  5. # IDE
  6. .idea/
  7. .vscode/
  8. *.swp
  9. *.swo
  10. *~
  11. # OS
  12. .DS_Store
  13. Thumbs.db
  14. # Test coverage
  15. coverage/
  16. .nyc_output/
  17. # Environment
  18. .env
  19. .env.local
  20. .env.*.local
  21. # Logs
  22. *.log
  23. npm-debug.log*
  24. # TypeScript build info
  25. *.tsbuildinfo
  26. # SQLite WAL mode files
  27. *.db-wal
  28. *.db-shm
  29. # Local Claude settings
  30. .claude/settings.local.json
  31. # CodeGraph data directories (in test projects)
  32. .codegraph/
  33. # Test language repos for manual testing
  34. test-languages/