.gitignore 344 B

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