.gitignore 593 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
  2. opt/
  3. # Compiled output
  4. /dist
  5. /tmp
  6. /out-tsc
  7. /bazel-out
  8. # Node
  9. /node_modules
  10. npm-debug.log
  11. yarn-error.log
  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