.gitignore 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. # Logs
  2. *.log
  3. npm-debug.log*
  4. yarn-debug.log*
  5. yarn-error.log*
  6. # Runtime data
  7. *.pid
  8. *.seed
  9. *.pid.lock
  10. # Directory for instrumented libs generated by jscoverage/JSCover
  11. lib-cov
  12. # Coverage directory used by tools like istanbul
  13. coverage
  14. # nyc test coverage
  15. .nyc_output
  16. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  17. .grunt
  18. # Bower dependency directory (https://bower.io/)
  19. bower_components
  20. # node-waf configuration
  21. .lock-wscript
  22. # Compiled binary addons (https://nodejs.org/api/addons.html)
  23. build/Release
  24. # Dependency directories
  25. node_modules/
  26. jspm_packages/
  27. # Optional npm cache directory
  28. .npm
  29. # Optional eslint cache
  30. .eslintcache
  31. # Optional REPL history
  32. .node_repl_history
  33. # Output of 'npm pack'
  34. *.tgz
  35. # Yarn Integrity file
  36. .yarn-integrity
  37. # dotenv environment variables file
  38. .env
  39. # next.js build output
  40. .next
  41. # OS X temporary files
  42. .DS_Store
  43. # Rush temporary files
  44. common/deploy/
  45. common/temp/
  46. common/autoinstallers/*/.npmrc
  47. **/.rush/temp/
  48. # TypeScript build output
  49. lib
  50. cjs
  51. dts
  52. esm
  53. dist
  54. *.tsbuildinfo