.gitignore 475 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # Environment variables
  2. .env
  3. .env.local
  4. .env.development.local
  5. .env.test.local
  6. .env.production.local
  7. # Dependencies
  8. node_modules/
  9. npm-debug.log*
  10. yarn-debug.log*
  11. yarn-error.log*
  12. # Build output
  13. dist/
  14. build/
  15. # Test output
  16. test-output/
  17. test/
  18. *.test
  19. # IDE
  20. .vscode/
  21. .idea/
  22. *.swp
  23. *.swo
  24. *~
  25. # OS
  26. .DS_Store
  27. Thumbs.db
  28. # Temporary files
  29. *.tmp
  30. *.temp
  31. debug-parser.ts
  32. test-calculator.h
  33. IMPLEMENTATION_COMPLETE.md
  34. # Logs
  35. logs/
  36. *.log
  37. # Example docs (keep for reference)
  38. example-docs/