.gitignore 324 B

12345678910111213141516171819202122232425262728293031323334
  1. # Logs
  2. logs
  3. *.log
  4. npm-debug.log.*
  5. # OS generated files #
  6. .DS_Store
  7. .Trash-*
  8. ehthumbs.db
  9. Icon?
  10. Thumbs.db
  11. # Node Files #
  12. /node_modules/
  13. /bower_components/
  14. npm-debug.log
  15. /npm-debug.log.*
  16. # Dist #
  17. /public/
  18. /src/*/__build__/
  19. /__build__/**
  20. /src/*/dist/
  21. /.awcache
  22. .webpack.json
  23. /compiled/
  24. # Doc #
  25. /doc/
  26. # IDE #
  27. .idea
  28. .vscode