| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- # Dependencies
- node_modules/
- # Build output
- dist/
- # IDE
- .idea/
- .vscode/
- *.swp
- *.swo
- *~
- # OS
- .DS_Store
- Thumbs.db
- # Test coverage
- coverage/
- .nyc_output/
- # Environment
- .env
- .env.local
- .env.*.local
- # Logs
- *.log
- npm-debug.log*
- # TypeScript build info
- *.tsbuildinfo
- # SQLite WAL mode files
- *.db-wal
- *.db-shm
- # Local Claude settings
- .claude/settings.local.json
- # CodeGraph data directories (in test projects)
- .codegraph/
- # Test language repos for manual testing
- test-languages/
|