.gitignore 692 B

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