Advertisement
Shell_Casing

Gitignore

Nov 7th, 2018
451
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. # See http://help.github.com/ignore-files/ for more about ignoring files.
  2.  
  3. # sensitive stuff
  4. /src/environments
  5.  
  6. # compiled output
  7. /dist
  8. /tmp
  9. /out-tsc
  10.  
  11. # dependencies
  12. /node_modules
  13.  
  14. # IDEs and editors
  15. /.idea
  16. .project
  17. .classpath
  18. .c9/
  19. *.launch
  20. .settings/
  21. *.sublime-workspace
  22.  
  23. # IDE - VSCode
  24. .vscode/*
  25. !.vscode/settings.json
  26. !.vscode/tasks.json
  27. !.vscode/launch.json
  28. !.vscode/extensions.json
  29.  
  30. # misc
  31. /.sass-cache
  32. /connect.lock
  33. /coverage
  34. /libpeerconnection.log
  35. npm-debug.log
  36. yarn-error.log
  37. testem.log
  38. /typings
  39.  
  40. # System Files
  41. .DS_Store
  42. Thumbs.db
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement