You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Node.gitignore 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. # Logs
  2. logs
  3. *.log
  4. npm-debug.log*
  5. yarn-debug.log*
  6. yarn-error.log*
  7. lerna-debug.log*
  8. .pnpm-debug.log*
  9. # Diagnostic reports (https://nodejs.org/api/report.html)
  10. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  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. *.lcov
  21. # nyc test coverage
  22. .nyc_output
  23. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  24. .grunt
  25. # Bower dependency directory (https://bower.io/)
  26. bower_components
  27. # node-waf configuration
  28. .lock-wscript
  29. # Compiled binary addons (https://nodejs.org/api/addons.html)
  30. build/Release
  31. # Dependency directories
  32. node_modules/
  33. jspm_packages/
  34. # Snowpack dependency directory (https://snowpack.dev/)
  35. web_modules/
  36. # TypeScript cache
  37. *.tsbuildinfo
  38. # Optional npm cache directory
  39. .npm
  40. # Optional eslint cache
  41. .eslintcache
  42. # Microbundle cache
  43. .rpt2_cache/
  44. .rts2_cache_cjs/
  45. .rts2_cache_es/
  46. .rts2_cache_umd/
  47. # Optional REPL history
  48. .node_repl_history
  49. # Output of 'npm pack'
  50. *.tgz
  51. # Yarn Integrity file
  52. .yarn-integrity
  53. # dotenv environment variables file
  54. .env
  55. .env.test
  56. .env.production
  57. # parcel-bundler cache (https://parceljs.org/)
  58. .cache
  59. .parcel-cache
  60. # Next.js build output
  61. .next
  62. out
  63. # Nuxt.js build / generate output
  64. .nuxt
  65. dist
  66. # Gatsby files
  67. .cache/
  68. # Comment in the public line in if your project uses Gatsby and not Next.js
  69. # https://nextjs.org/blog/next-9-1#public-directory-support
  70. # public
  71. # vuepress build output
  72. .vuepress/dist
  73. # Serverless directories
  74. .serverless/
  75. # FuseBox cache
  76. .fusebox/
  77. # DynamoDB Local files
  78. .dynamodb/
  79. # TernJS port file
  80. .tern-port
  81. # Stores VSCode versions used for testing VSCode extensions
  82. .vscode-test
  83. # yarn v2
  84. .yarn/cache
  85. .yarn/unplugged
  86. .yarn/build-state.yml
  87. .yarn/install-state.gz
  88. .pnp.*