.gitignore 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .vscode/
  2. ####################################################################
  3. ### Node GitIgnore Entries - https://github.com/github/gitignore ###
  4. ####################################################################
  5. # Logs
  6. logs
  7. *.log
  8. npm-debug.log*
  9. yarn-debug.log*
  10. yarn-error.log*
  11. # Runtime data
  12. pids
  13. *.pid
  14. *.seed
  15. *.pid.lock
  16. # Directory for instrumented libs generated by jscoverage/JSCover
  17. lib-cov
  18. # Coverage directory used by tools like istanbul
  19. coverage
  20. # nyc test coverage
  21. .nyc_output
  22. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  23. .grunt
  24. # Bower dependency directory (https://bower.io/)
  25. bower_components
  26. # node-waf configuration
  27. .lock-wscript
  28. # Compiled binary addons (http://nodejs.org/api/addons.html)
  29. build/Release
  30. # Dependency directories
  31. node_modules/
  32. jspm_packages/
  33. # Typescript v1 declaration files
  34. typings/
  35. # Optional npm cache directory
  36. .npm
  37. # Optional eslint cache
  38. .eslintcache
  39. # Optional REPL history
  40. .node_repl_history
  41. # Output of 'npm pack'
  42. *.tgz
  43. # Yarn Integrity file
  44. .yarn-integrity
  45. # dotenv environment variables file
  46. .env