.gitignore 216 B

12345678910111213141516171819
  1. # macOS and editor files
  2. .DS_Store
  3. .idea/
  4. .vscode/
  5. *.swp
  6. *.swo
  7. # Local dependencies and build output (if tooling is added later)
  8. node_modules/
  9. dist/
  10. build/
  11. .cache/
  12. # Logs and temporary files
  13. *.log
  14. *.tmp
  15. *.temp
  16. *~