Visual studio code VS代码调试器停止

Visual studio code VS代码调试器停止,visual-studio-code,javascript-debugger,node-debugger,Visual Studio Code,Javascript Debugger,Node Debugger,每当我想启动VS代码的调试器时,它都会运行一两秒钟,然后停止,并显示消息“debugger attached”。 正在等待调试器断开连接。。。 在调试器控制台中 尝试“${workspaceFolder}/controller/get form contents.js”-不带\\斜杠。 { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existin

每当我想启动VS代码的调试器时,它都会运行一两秒钟,然后停止,并显示消息“debugger attached”。 正在等待调试器断开连接。。。 在调试器控制台中

尝试“${workspaceFolder}/controller/get form contents.js”-不带\\斜杠。
{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "type": "node",
            "request": "launch",
            "name": "Launch Program",
            "program": "${workspaceFolder}/controller\\get-form-contents.js"
        }
    ]
}