.gitignore 220 B

123456789101112131415161718192021222324252627
  1. # Plugin-specific ignores
  2. node_modules/
  3. .env
  4. .env.*
  5. *.key
  6. *.token
  7. secrets/
  8. keys/
  9. # Build outputs
  10. dist/
  11. build/
  12. *.tsbuildinfo
  13. # Logs
  14. *.log
  15. logs/
  16. # Cache
  17. .cache/
  18. .parcel-cache/
  19. # Temporary files
  20. tmp/
  21. temp/
  22. *.tmp
  23. *.temp