.gitignore 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. # Logs
  2. logs
  3. *.log
  4. npm-debug.log*
  5. yarn-debug.log*
  6. yarn-error.log*
  7. lerna-debug.log*
  8. # Diagnostic reports (https://nodejs.org/api/report.html)
  9. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  10. # Runtime data
  11. pids
  12. *.pid
  13. *.seed
  14. *.pid.lock
  15. # Directory for instrumented libs generated by jscoverage/JSCover
  16. lib-cov
  17. # Coverage directory used by tools like istanbul
  18. coverage
  19. *.lcov
  20. # nyc test coverage
  21. .nyc_output
  22. # Grunt intermediate storage (https://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 (https://nodejs.org/api/addons.html)
  29. build/Release
  30. # Dependency directories
  31. node_modules/
  32. jspm_packages/
  33. # Snowpack dependency directory (https://snowpack.dev/)
  34. web_modules/
  35. # TypeScript cache
  36. *.tsbuildinfo
  37. # Optional npm cache directory
  38. .npm
  39. # Optional eslint cache
  40. .eslintcache
  41. # Optional stylelint cache
  42. .stylelintcache
  43. # Optional REPL history
  44. .node_repl_history
  45. # Output of 'npm pack'
  46. *.tgz
  47. # Yarn Integrity file
  48. .yarn-integrity
  49. # dotenv environment variable files
  50. .env
  51. .env.*
  52. !.env.example
  53. # parcel-bundler cache (https://parceljs.org/)
  54. .cache
  55. .parcel-cache
  56. # Next.js build output
  57. .next
  58. out
  59. # Nuxt.js build / generate output
  60. .nuxt
  61. dist
  62. .output
  63. # Gatsby files
  64. .cache/
  65. # Comment in the public line in if your project uses Gatsby and not Next.js
  66. # https://nextjs.org/blog/next-9-1#public-directory-support
  67. # public
  68. # vuepress build output
  69. .vuepress/dist
  70. # vuepress v2.x temp directory
  71. .temp
  72. # Sveltekit cache directory
  73. .svelte-kit/
  74. # vitepress build output
  75. **/.vitepress/dist
  76. # vitepress cache directory
  77. **/.vitepress/cache
  78. # Docusaurus cache and generated files
  79. .docusaurus
  80. # Serverless directories
  81. .serverless/
  82. # FuseBox cache
  83. .fusebox/
  84. # DynamoDB Local files
  85. .dynamodb/
  86. # Firebase cache directory
  87. .firebase/
  88. # TernJS port file
  89. .tern-port
  90. # Stores VSCode versions used for testing VSCode extensions
  91. .vscode-test
  92. # pnpm
  93. .pnpm-store
  94. # yarn v3
  95. .pnp.*
  96. .yarn/*
  97. !.yarn/patches
  98. !.yarn/plugins
  99. !.yarn/releases
  100. !.yarn/sdks
  101. !.yarn/versions
  102. # Vite files
  103. vite.config.js.timestamp-*
  104. vite.config.ts.timestamp-*
  105. .vite/