.gitignore 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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. # Microbundle cache
  46. .rpt2_cache/
  47. .rts2_cache_cjs/
  48. .rts2_cache_es/
  49. .rts2_cache_umd/
  50. # Optional REPL history
  51. .node_repl_history
  52. # Output of 'npm pack'
  53. *.tgz
  54. # Yarn Integrity file
  55. .yarn-integrity
  56. # dotenv environment variables file
  57. .env
  58. .env.test
  59. .env.production
  60. # parcel-bundler cache (https://parceljs.org/)
  61. .cache
  62. .parcel-cache
  63. # Next.js build output
  64. .next
  65. out
  66. # Nuxt.js build / generate output
  67. .nuxt
  68. dist
  69. # Gatsby files
  70. .cache/
  71. # Comment in the public line in if your project uses Gatsby and not Next.js
  72. # https://nextjs.org/blog/next-9-1#public-directory-support
  73. # public
  74. # vuepress build output
  75. .vuepress/dist
  76. # Serverless directories
  77. .serverless/
  78. # FuseBox cache
  79. .fusebox/
  80. # DynamoDB Local files
  81. .dynamodb/
  82. # TernJS port file
  83. .tern-port
  84. # Stores VSCode versions used for testing VSCode extensions
  85. .vscode-test
  86. # yarn v2
  87. .yarn/cache
  88. .yarn/unplugged
  89. .yarn/build-state.yml
  90. .yarn/install-state.gz
  91. .pnp.*
  92. # End of https://www.toptal.com/developers/gitignore/api/node
  93. # Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode
  94. # Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode
  95. ### VisualStudioCode ###
  96. .vscode/*
  97. !.vscode/settings.json
  98. !.vscode/tasks.json
  99. !.vscode/launch.json
  100. !.vscode/extensions.json
  101. *.code-workspace
  102. # Local History for Visual Studio Code
  103. .history/
  104. ### VisualStudioCode Patch ###
  105. # Ignore all local history of files
  106. .history
  107. .ionide
  108. # End of https://www.toptal.com/developers/gitignore/api/visualstudiocode