.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. Thumbs.db
  10. # Node Files #
  11. /node_modules/
  12. /bower_components/
  13. npm-debug.log
  14. /npm-debug.log.*
  15. # Dist #
  16. /report/
  17. /src/*/__build__/
  18. /__build__/**
  19. /src/*/dist/
  20. /.awcache
  21. .webpack.json
  22. /compiled/
  23. /tmp/
  24. # Doc #
  25. /doc/
  26. # IDE #
  27. .idea
  28. .vscode