.gitignore 625 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # Dependencies
  2. node_modules/
  3. # Build output
  4. dist/
  5. build/
  6. # Test coverage
  7. coverage/
  8. # Jest cache
  9. .jest-cache/
  10. # Environment variables
  11. .env
  12. .env.local
  13. .env.development.local
  14. .env.test.local
  15. .env.production.local
  16. # IDE
  17. .vscode/
  18. .idea/
  19. # OS generated files
  20. .DS_Store
  21. .DS_Store?
  22. ._*
  23. .Spotlight-V100
  24. .Trashes
  25. ehthumbs.db
  26. Thumbs.db
  27. # Logs
  28. logs
  29. *.log
  30. npm-debug.log*
  31. yarn-debug.log*
  32. yarn-error.log*
  33. # Runtime data
  34. pids
  35. *.pid
  36. *.seed
  37. *.pid.lock
  38. # Optional npm cache directory
  39. .npm
  40. # Optional REPL history
  41. .node_repl_history
  42. # Output of 'npm pack'
  43. *.tgz
  44. # Yarn Integrity file
  45. .yarn-integrity
  46. # Test files
  47. test_*.ts
  48. test_*.js