.gitignore 628 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # See https://docs.github.com/get-started/getting-started-with-git/ignoring-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. *.log
  12. *.err.log
  13. output/
  14. .playwright-cli/
  15. # IDEs and editors
  16. .idea/
  17. .project
  18. .classpath
  19. .c9/
  20. *.launch
  21. .settings/
  22. *.sublime-workspace
  23. # Visual Studio Code
  24. .vscode/*
  25. !.vscode/settings.json
  26. !.vscode/tasks.json
  27. !.vscode/launch.json
  28. !.vscode/extensions.json
  29. .history/*
  30. # Miscellaneous
  31. /.angular/cache
  32. .sass-cache/
  33. /connect.lock
  34. /coverage
  35. /libpeerconnection.log
  36. testem.log
  37. /typings
  38. # System files
  39. .DS_Store
  40. Thumbs.db