.gitignore 2.1 KB

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