.gitignore 686 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # compiled output
  2. /dist
  3. /node_modules
  4. /build
  5. # Logs
  6. logs
  7. *.log
  8. npm-debug.log*
  9. pnpm-debug.log*
  10. yarn-debug.log*
  11. yarn-error.log*
  12. lerna-debug.log*
  13. # OS
  14. .DS_Store
  15. # Tests
  16. /coverage
  17. /.nyc_output
  18. # IDEs and editors
  19. /.idea
  20. .project
  21. .classpath
  22. .c9/
  23. *.launch
  24. .settings/
  25. *.sublime-workspace
  26. # IDE - VSCode
  27. .vscode/*
  28. !.vscode/settings.json
  29. !.vscode/tasks.json
  30. !.vscode/launch.json
  31. !.vscode/extensions.json
  32. # dotenv environment variable files
  33. .env
  34. .env.development.local
  35. .env.test.local
  36. .env.production.local
  37. .env.local
  38. # temp directory
  39. .temp
  40. .tmp
  41. # Runtime data
  42. pids
  43. *.pid
  44. *.seed
  45. *.pid.lock
  46. # Diagnostic reports (https://nodejs.org/api/report.html)
  47. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json