.gitignore 665 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. # logs
  8. .nx/cache/d/daemon.log
  9. .nx/cache/d/server-process.json
  10. .nx/cache/d/*
  11. /nx/cache/d/*
  12. *.log
  13. /.nx-cache
  14. /.nx
  15. # Node
  16. /node_modules
  17. npm-debug.log
  18. yarn-error.log
  19. # IDEs and editors
  20. .idea/
  21. .project
  22. .classpath
  23. .c9/
  24. *.launch
  25. .settings/
  26. *.sublime-workspace
  27. # Visual Studio Code
  28. .vscode/*
  29. !.vscode/settings.json
  30. !.vscode/tasks.json
  31. !.vscode/launch.json
  32. !.vscode/extensions.json
  33. .history/*
  34. # Miscellaneous
  35. /.angular/cache
  36. .sass-cache/
  37. /connect.lock
  38. /coverage
  39. /libpeerconnection.log
  40. testem.log
  41. /typings
  42. # System files
  43. .DS_Store
  44. Thumbs.db