在过去的几周里,我收到了关于我的 Visual Studio Code 的通知:
配置断点需要一段时间。您可以通过更新 launch.json 中的“outFiles”来加快速度。
我的 launch.json 中目前没有 outFiles 部分。我应该考虑添加此部分,还是可以忽略通知?
这是我的launch.json:
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8080/index.html",
"webRoot": "${workspaceRoot}",
"timeout": 10000,
"sourceMaps": true,
"trace": true,
},
]
}
Run Code Online (Sandbox Code Playgroud)