.gitignore 566 B

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