.gitignore 902 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # ---> Node
  2. # Logs
  3. logs
  4. *.log
  5. npm-debug.log*
  6. # Runtime data
  7. pids
  8. *.pid
  9. *.seed
  10. # Directory for instrumented libs generated by jscoverage/JSCover
  11. lib-cov
  12. # Coverage directory used by tools like istanbul
  13. coverage
  14. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  15. .grunt
  16. # node-waf configuration
  17. .lock-wscript
  18. # Compiled binary addons (http://nodejs.org/api/addons.html)
  19. build/Release
  20. # Dependency directory
  21. # https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
  22. node_modules
  23. # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
  24. # dependencies
  25. /node_modules
  26. /.pnp
  27. .pnp.js
  28. # testing
  29. /coverage
  30. # next.js
  31. /.next/
  32. /out/
  33. # production
  34. /build
  35. # misc
  36. .DS_Store
  37. *.pem
  38. # debug
  39. npm-debug.log*
  40. yarn-debug.log*
  41. yarn-error.log*
  42. .pnpm-debug.log*
  43. # local env files
  44. .env*.local
  45. # vercel
  46. .vercel
  47. .deploy
  48. .malagu