Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. {
  2. "files.exclude": {
  3. // Default Setting
  4. "**/.git": true,
  5. "**/.svn": true,
  6. "**/.hg": true,
  7. "**/CVS": true,
  8. "**/.DS_Store": true,
  9.  
  10.  
  11. // Custom Setting
  12. // * ここに記述したものはVSCode上に表示されなくなります。表示しておきたいものは残してください。
  13. // * どの程度CPU占有率に影響するかは使用している拡張機能にも依ります。
  14.  
  15. // node_modulesやbowser componentsのようなpackageなどを管理するためのディレクトリ
  16. "**/node_modules": true,
  17.  
  18. // Cache用のディレクトリやファイル
  19. "**/.cache": true, 
  20.  
  21. // Buildディレクトリやファイル
  22. "**/dist": true 
  23. "**/build": true 
  24. },
  25. "files.watcherExclude": {
  26. // Default Settings
  27. "**/.git/objects/**": true,
  28. "**/.git/subtree-cache/**": true,
  29. "**/node_modules/**": true,
  30.  
  31.  
  32. // Custom Setting
  33. // * ここに記述したものはVSCodeが監視しなくなるため、変更されてもautoSaveやformatOnSavenなどが発火しなくなります。
  34. // * それぞれの指定が、どの程度CPU占有率に影響するかは使用している拡張機能にも依ります
  35.  
  36. // Cache用のディレクトリやファイル
  37. "**/.cache": true, 
  38.  
  39. // Buildディレクトリやファイル
  40. "**/dist": true 
  41. "**/build": true
  42.  
  43. // 画像や動画用のディレクトリやファイル
  44. "**/images": true 
  45. "**/movies": true
  46.  
  47. }
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement