Visual Studio代码调试不使用Angular 6 CLI

问题描述 投票:-1回答:1

嗨,我试图在Visual Studio代码中调试应用程序,但我无法调试,它显示我错误消息'配置调试类型'色彩'不支持'。

以下是launch.json文件代码

{
// 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": "chrome",
        "request": "attach",
        "name": "Attach to Chrome",
        "port": 4200,
        "webRoot": "${workspaceFolder}"
    }
]
}
angular debugging visual-studio-code angular6
1个回答
0
投票

你应该遵循这个qazxsw poi,非常好。

另外,不要忘记在启动调试器时需要启动应用程序。


0
投票

您需要在现有配置中添加以下“webRoot”:

tutorial
© www.soinside.com 2019 - 2024. All rights reserved.