.gitignore 791 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # https://raw.githubusercontent.com/github/gitignore/main/Node.gitignore
  2. # Logs
  3. logs
  4. *.log
  5. npm-debug.log*
  6. yarn-debug.log*
  7. yarn-error.log*
  8. lerna-debug.log*
  9. .pnpm-debug.log*
  10. # Diagnostic reports (https://nodejs.org/api/report.html)
  11. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  12. # Runtime data
  13. pids
  14. *.pid
  15. *.seed
  16. *.pid.lock
  17. # Coverage directory used by tools like istanbul
  18. coverage
  19. *.lcov
  20. # Dependency directories
  21. node_modules/
  22. jspm_packages/
  23. # TypeScript cache
  24. *.tsbuildinfo
  25. # Optional npm cache directory
  26. .npm
  27. # Optional eslint cache
  28. .eslintcache
  29. # Yarn Integrity file
  30. .yarn-integrity
  31. # dotenv environment variable files
  32. .env
  33. .env.development.local
  34. .env.test.local
  35. .env.production.local
  36. .env.local
  37. # yarn v2
  38. .yarn/cache
  39. .yarn/unplugged
  40. .yarn/build-state.yml
  41. .yarn/install-state.gz
  42. .pnp.*