.gitignore 668 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. # TypeScript build output
  24. dist/
  25. *.tsbuildinfo
  26. # Environment variables
  27. .env
  28. .env.local
  29. # IDE
  30. .vscode/
  31. .idea/
  32. *.swp
  33. *.swo
  34. *~