优化vscode代码debugger调试,使用vscode自带的功能,不使用插件

This commit is contained in:
puhui999
2023-04-10 23:53:26 +08:00
parent ecdaf84b24
commit fcb830b93e
2 changed files with 13 additions and 2 deletions

12
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,12 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch debug",
"request": "launch",
"type": "chrome",
"url": "http://localhost",
"webRoot": "${workspaceFolder}/src"
}
]
}