MAC电脑 Vscode占用内存cpu 过高问题

1、Mac 电脑找到 Vscode 设置 setting.json 的地方
1-1、在这里插入图片描述
2、
在这里插入图片描述

"search.followSymlinks": false
 "files.exclude": {
    "**/.git": true,
    "**/.svn": true,
    "**/.hg": true,
    "**/CVS": true,
    "**/.DS_Store": true,
    "**/tmp": true,
    "**/node_modules": true,
    "**/bower_components": true,
    "**/dist": true
  },
  "files.watcherExclude": {
    "**/.git/objects/**": true,
    "**/.git/subtree-cache/**": true,
    "**/node_modules/**": true,
    "**/tmp/**": true,
    "**/bower_components/**": true,
    "**/dist/**": true
 }

猜你喜欢

转载自blog.csdn.net/weixin_45796807/article/details/112968369