在前端开发过程中,如果项目是有依赖于npm或者其他依赖管理工具拉取的包的项目,项目根目录会生成node_module或者bower_components目录,这个目录下会有成千上万了文件,如果用vscode编辑这样的项目,vscode的Code Helper进程会消耗大量的硬件资源,尤其是CPU和内存,也会出现发热,耗电快的现象(如果是笔记本电脑)。这时我们需要修改vscode的设置,让它不要对依赖包进行关联。设置如下
代码语言:javascript复制"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
}
也可以参考上面的设置去设置其他文件或目录到配置中,可以减少vscode的资源消耗