我需要你们的一些帮助我是AngularJs的新手,我想在Visual Studio代码中调试我的代码,请如何帮助我,我安装了适用于Chrome的调试器,但它的显示
忽略断点,因为找不到生成的代码
当我切换选项附加到Chrome时,使用源图应用程序不会启动它的show belo错误,
无法连接到运行时进程,10000毫秒后超时 - (原因: 无法连接到目标:undefined)。
当我选择针对localhost启动Chrome时,使用sourcemaps选项我的应用程序运行完美但调试器无法运行
如何解决这类问题,
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Chrome against localhost, with sourcemaps",
"type": "chrome",
"request": "launch",
"url": "http://localhost:8080",
"sourceMaps": true,
"webRoot": "${workspaceRoot}"
},
{
"name": "Attach to Chrome, with sourcemaps",
"type": "chrome",
"request": "attach",
"url": "http://localhost:8080",
"port":8080,
"sourceMaps": true,
"webRoot": "${workspaceRoot}"
}
]
}