{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"runtimeExecutable": "nodemon",
"console": "integratedTerminal",
"name": "Launch Program",
"program": "${workspaceFolder}/app.js",
"skipFiles": [
"${workspaceFolder}/node_modules/**/*.js",
"<node_internals>/**/*.js"
]
}
]
}
same os version(win10 1803), same version VSCode (1.31), same launch.json clone the same repo from github(build with node.js), when PC1, it output debug info from node.exe normally in the debug console, but PC2, it just show command in the Terminal tab,then open a external window with node.exe running, there is no debug bar in the editor, only double Ctrl-C can stop the debug session.