更新vscode的debug配置

This commit is contained in:
zhl 2020-12-09 15:25:38 +08:00
parent 5946f5ef97
commit 0f11ff6d29

11
.vscode/launch.json vendored
View File

@ -20,15 +20,18 @@
{
"address": "192.168.100.24",
"localRoot": "${workspaceFolder}",
"localRoot": "${workspaceFolder}/src",
"name": "192.168.100.24",
"port": 9229,
"remoteRoot": "Absolute path to the remote directory containing the program",
"remoteRoot": "/root/apps/card_svr/src",
"request": "attach",
"skipFiles": [
"<node_internals>/**"
"<node_internals>/**",
"node_modules/**"
],
"type": "pwa-node"
"type": "node",
"trace": true
}
]
}