最佳答案
我试图在 Visual Studio Code 中使用 Chrome Debugger 扩展来调试我的类型脚本代码,但是我在断点上收到了“未经验证的断点”消息,并且执行并没有在我的断点上停止。
下面是我的 launch.json 文件:
{
linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:4200",
"sourceMaps": true,
"webRoot": "${workspaceFolder}"
}
]
}
应用程序版本:
对于我如何解决这个问题还有其他建议吗?