使用Debugger For Chrome插件尝试使用“附加到Chrome”选项在VSCode中进行调试时出错

时间:2017-08-26 18:29:21

标签: google-chrome debugging typescript visual-studio-code

Visual Studio代码。
使用sourcemaps将Typescript文件编译为JavaScript文件。 生成的launch.json:

{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "chrome",
            "request": "launch",
            "name": "Launch Chrome against localhost",
            "url": "http://localhost:8080",
            "webRoot": "${workspaceRoot}"
        },
        {
            "type": "chrome",
            "request": "attach",
            "name": "Attach to Chrome",
            "port": 9222,
            "webRoot": "${workspaceRoot}"
        }
    ]
}

Chrome以参数:--remote-debugging-port = 9222

启动

enter image description here

但我还是得到了

无法连接到目标:connect ECONNREFUSED 127.0.0.1:9222

尝试使用“附加到Chrome”选项进行调试时,VSCode中出现

错误。

enter image description here

1 个答案:

答案 0 :(得分:0)

使用带有*作为通配符的'urlFIlter'可以解决您的问题。

有关更多详细信息,请参见我的答案here