update debug profiles

This commit is contained in:
srgooglo 2022-09-07 12:28:21 +02:00
parent 1f7e0345fb
commit 3b19b24181

18
.vscode/launch.json vendored
View File

@ -12,7 +12,7 @@
}, },
{ {
"name": "Attach to Chrome", "name": "Attach to Chrome",
"port": 9222, "port": 8000,
"request": "attach", "request": "attach",
"type": "pwa-chrome", "type": "pwa-chrome",
"webRoot": "${workspaceFolder}" "webRoot": "${workspaceFolder}"
@ -39,10 +39,22 @@
{ {
"name": "Launch via NPM", "name": "Launch via NPM",
"request": "launch", "request": "launch",
"runtimeArgs": ["run-script", "debug"], "runtimeArgs": [
"run-script",
"debug"
],
"runtimeExecutable": "npm", "runtimeExecutable": "npm",
"skipFiles": ["<node_internals>/**"], "skipFiles": [
"<node_internals>/**"
],
"type": "pwa-node" "type": "pwa-node"
},
{
"name": "Launch WEB APP",
"type": "pwa-chrome",
"name": "http://192.168.0.2:8000",
"request": "launch",
"url": "http://192.168.0.2:8000"
} }
] ]
} }