.gitignore 852 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. # production
  31. /build
  32. # misc
  33. .DS_Store
  34. .env.local
  35. .env.development.local
  36. .env.test.local
  37. .env.production.local
  38. npm-debug.log*
  39. yarn-debug.log*
  40. yarn-error.log*