debug: use simple port attachment for launching main porcess

Fixes #129230
This commit is contained in:
Connor Peet
2021-08-05 10:53:59 -07:00
parent b8a698e86d
commit 8797cfe27e

6
.vscode/launch.json vendored
View File

@@ -243,15 +243,17 @@
}
},
{
"type": "node",
"type": "pwa-node",
"request": "launch",
"name": "Main Process",
"attachSimplePort": 5875,
"runtimeExecutable": "${workspaceFolder}/scripts/code.sh",
"windows": {
"runtimeExecutable": "${workspaceFolder}/scripts/code.bat",
},
"runtimeArgs": [
"--no-cached-data"
"--inspect-brk=5875",
"--no-cached-data",
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"