我注意到VS Code中的调试模式使用launch.json“program”条目来决定要启动哪个文件。
有没有办法绕过这个?我想在我的Node App中右键单击并调试特定文件。截至目前,我每次调试新的js文件时都要编辑launch.json。
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceRoot}\\hello.js"
}
答案 0 :(得分:1)
VS Code目前不支持通过右键单击文件进行调试。您可以拥有的最接近的替代方法是调试当前打开的文件,在program
中将${file}
属性设置为launch.json
:
{
// ...
"program": "${file}"
}
有关可在launch.json