VS Code打开文件时有个和typescript有关的进程CPU占用过高如何解决?

环境:

  • macOS Sierra 10.12.5
  • VS Code 1.14.2 (1.14.2)

状况描述:

只打开软件没问题,一但打开了项目,就有一个code helper进程强势登顶

图片描述

所有插件都停用之后也是这个状况

ps aux | grep PID查看进程详情:

luob              8926  99.6  1.1  3211000  93372   ??  R    10:54上午   0:39.51 /Applications/Visual Studio Code.app/Contents/Frameworks/Code Helper.app/Contents/MacOS/Code Helper /Applications/Visual Studio Code.app/Contents/Resources/app/extensions/node_modules/typescript/lib/typingsInstaller.js --globalTypingsCacheLocation /Users/luob/Library/Caches/typescript/2.4 --enableTelemetry

强制结束这个进程也没见有什么影响,不知道这是提供什么功能的,能否从哪里设置关闭?

补充,发现只要项目中某个文件引入了node_modules中的包的话,就出现这个高占用的进程,不知是否和这个有关(唯一能想到会出现typescript相关进程的地方……)

图片描述

阅读 19k
3 个回答

在 用户设置里:

 "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
    }

参考来源

https://github.com/Microsoft/...

我原来开了两个vscode,两个 code helper 吃了我两个核。风扇 7000转。现在 code helper 只占20%左右的cpu。如果你还想忽略哪些文件,可以按照以上方式配置

code helper 这个是 vsc 的问题,只有完全把 vsc 退出才可以解决。

vscode 设置 - followSymlinks - 设置为false, 即可解决!

"search.followSymlinks": false

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
logo
Microsoft
子站问答
访问
宣传栏