gpt4 book ai didi

debugging - 在 VS Code 中调试时如何跳过外部代码

转载 作者:行者123 更新时间:2023-12-04 05:36:26 25 4
gpt4 key购买 nike

中调试时vscode 我想做一些“黑盒”,不要输入我没有写的代码。我怎样才能做到这一点?

最佳答案

在您的启动或附加调试任务中,您可以输入

"skipfiles"


选项是

"An array of file or folder names, or path globs, to skip when debugging."


例如,来自 skipping node internals during debugging
"skipFiles": [
"${workspaceFolder}/node_modules/**/*.js",
"${workspaceFolder}/yourLibToSkip/**/*.js"
]
此外,您可以使用对内置核心节点模块的“神奇引用”:
"skipFiles": [
"<node_internals>/**/*.js"
]

关于debugging - 在 VS Code 中调试时如何跳过外部代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47556495/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com