.gitignore 561 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # See http://help.github.com/ignore-files/ for more about ignoring files.
  2. /www
  3. /android
  4. # Compiled output
  5. /dist
  6. /tmp
  7. /out-tsc
  8. /bazel-out
  9. # Node
  10. /node_modules
  11. npm-debug.log
  12. yarn-error.log
  13. # IDEs and editors
  14. .idea/
  15. .project
  16. .classpath
  17. .c9/
  18. *.launch
  19. .settings/
  20. *.sublime-workspace
  21. # Visual Studio Code
  22. .vscode/*
  23. !.vscode/settings.json
  24. !.vscode/tasks.json
  25. !.vscode/launch.json
  26. !.vscode/extensions.json
  27. .history/*
  28. # Miscellaneous
  29. /.angular/cache
  30. .sass-cache/
  31. /connect.lock
  32. /coverage
  33. /libpeerconnection.log
  34. testem.log
  35. /typings
  36. # System files
  37. .DS_Store
  38. Thumbs.db