.gitignore 340 B

12345678910111213141516171819202122232425
  1. # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
  2. package-lock.json
  3. *.lock.json
  4. # dependencies
  5. /node_modules
  6. /.pnp
  7. .pnp.js
  8. # testing
  9. /coverage
  10. # production
  11. /build
  12. # misc
  13. .DS_Store
  14. .env.local
  15. .env.development.local
  16. .env.test.local
  17. .env.production.local
  18. npm-debug.log*
  19. yarn-debug.log*
  20. yarn-error.log*