.gitignore 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. # Logs
  2. *.log
  3. npm-debug.log*
  4. yarn-debug.log*
  5. yarn-error.log*
  6. lerna-debug.log*
  7. # Runtime data
  8. pids
  9. *.pid
  10. *.seed
  11. *.pid.lock
  12. # Directory for instrumented libs generated by jscoverage/JSCover
  13. lib-cov
  14. # Coverage directory used by tools like istanbul
  15. .coverage
  16. .jest-cache
  17. # nyc test coverage
  18. .nyc_output
  19. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  20. .grunt
  21. # Bower dependency directory (https://bower.io/)
  22. bower_components
  23. # node-waf configuration
  24. .lock-wscript
  25. # Compiled binary addons (http://nodejs.org/api/addons.html)
  26. build/Release
  27. # Dependency directories
  28. node_modules/
  29. jspm_packages/
  30. # Typescript v1 declaration files
  31. typings/
  32. # Optional npm cache directory
  33. .npm
  34. # Optional eslint cache
  35. .eslintcache
  36. # Optional REPL history
  37. .node_repl_history
  38. # Output of 'npm pack'
  39. *.tgz
  40. # cache and distribution folders
  41. .parcel-cache
  42. .cache/
  43. .now
  44. dist/
  45. storybook-static
  46. # Mac files
  47. .DS_Store
  48. # Yarn
  49. yarn-error.log
  50. .pnp/
  51. .pnp.js
  52. .yarn
  53. .yarnrc.yml
  54. # Yarn Integrity file
  55. .yarn-integrity
  56. # vscode/extensions
  57. .history
  58. # JetBrains
  59. .idea