.gitignore 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. # Created by https://www.toptal.com/developers/gitignore/api/node
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=node
  3. ### Node ###
  4. # Logs
  5. logs
  6. *.log
  7. npm-debug.log*
  8. yarn-debug.log*
  9. yarn-error.log*
  10. lerna-debug.log*
  11. .pnpm-debug.log*
  12. # Diagnostic reports (https://nodejs.org/api/report.html)
  13. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  14. # Runtime data
  15. pids
  16. *.pid
  17. *.seed
  18. *.pid.lock
  19. # Directory for instrumented libs generated by jscoverage/JSCover
  20. lib-cov
  21. # Coverage directory used by tools like istanbul
  22. coverage
  23. *.lcov
  24. # nyc test coverage
  25. .nyc_output
  26. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  27. .grunt
  28. # Bower dependency directory (https://bower.io/)
  29. bower_components
  30. # node-waf configuration
  31. .lock-wscript
  32. # Compiled binary addons (https://nodejs.org/api/addons.html)
  33. build/Release
  34. # Dependency directories
  35. node_modules/
  36. jspm_packages/
  37. # Snowpack dependency directory (https://snowpack.dev/)
  38. web_modules/
  39. # TypeScript cache
  40. *.tsbuildinfo
  41. # Optional npm cache directory
  42. .npm
  43. # Optional eslint cache
  44. .eslintcache
  45. # Optional stylelint cache
  46. .stylelintcache
  47. # Microbundle cache
  48. .rpt2_cache/
  49. .rts2_cache_cjs/
  50. .rts2_cache_es/
  51. .rts2_cache_umd/
  52. # Optional REPL history
  53. .node_repl_history
  54. # Output of 'npm pack'
  55. *.tgz
  56. # Yarn Integrity file
  57. .yarn-integrity
  58. # dotenv environment variable files
  59. .env
  60. .env.development.local
  61. .env.test.local
  62. .env.production.local
  63. .env.local
  64. # parcel-bundler cache (https://parceljs.org/)
  65. .cache
  66. .parcel-cache
  67. # Next.js build output
  68. .next
  69. out
  70. # Nuxt.js build / generate output
  71. .nuxt
  72. dist
  73. # Gatsby files
  74. .cache/
  75. # Comment in the public line in if your project uses Gatsby and not Next.js
  76. # https://nextjs.org/blog/next-9-1#public-directory-support
  77. # public
  78. # vuepress build output
  79. .vuepress/dist
  80. # vuepress v2.x temp and cache directory
  81. .temp
  82. # Docusaurus cache and generated files
  83. .docusaurus
  84. # Serverless directories
  85. .serverless/
  86. # FuseBox cache
  87. .fusebox/
  88. # DynamoDB Local files
  89. .dynamodb/
  90. # TernJS port file
  91. .tern-port
  92. # Stores VSCode versions used for testing VSCode extensions
  93. .vscode-test
  94. # yarn v2
  95. .yarn/cache
  96. .yarn/unplugged
  97. .yarn/build-state.yml
  98. .yarn/install-state.gz
  99. .pnp.*
  100. ### Node Patch ###
  101. # Serverless Webpack directories
  102. .webpack/
  103. # Optional stylelint cache
  104. # SvelteKit build / generate output
  105. .svelte-kit
  106. # End of https://www.toptal.com/developers/gitignore/api/node