嗨,我试图在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}"
}
]
}