.gitignore 604 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # See http://help.github.com/ignore-files/ for more about ignoring files.
  2. # compiled output
  3. /dist
  4. /tmp
  5. /out-tsc
  6. # Only exists if Bazel was run
  7. /bazel-out
  8. # dependencies
  9. /node_modules
  10. # profiling files
  11. chrome-profiler-events*.json
  12. # IDEs and editors
  13. /.idea
  14. .project
  15. .classpath
  16. .c9/
  17. *.launch
  18. .settings/
  19. *.sublime-workspace
  20. # IDE - VSCode
  21. .vscode/*
  22. !.vscode/settings.json
  23. !.vscode/tasks.json
  24. !.vscode/launch.json
  25. !.vscode/extensions.json
  26. .history/*
  27. # misc
  28. /.sass-cache
  29. /connect.lock
  30. /coverage
  31. /libpeerconnection.log
  32. npm-debug.log
  33. yarn-error.log
  34. testem.log
  35. /typings
  36. # System Files
  37. .DS_Store
  38. Thumbs.db