Skip to content

Commit d87b05f

Browse files
committed
Updated debug configuration
Replaced deprecated pwa-node and pwa-chrome types with node and chrome, respectively
1 parent bbaeb4b commit d87b05f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"configurations": [
77
{
88
"name": "Electron: Main",
9-
"type": "pwa-node", //use the node debugger that comes with VS Code
9+
"type": "node", //use the node debugger that comes with VS Code
1010
"request": "launch",
1111
"cwd": "${workspaceFolder}",
1212
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
@@ -24,7 +24,7 @@
2424
},
2525
{
2626
"name": "Electron: Renderer",
27-
"type": "pwa-chrome", //use the Chrome debugger that comes with VS Code
27+
"type": "chrome", //use the Chrome debugger that comes with VS Code
2828
"request": "attach",
2929
"port": 9223, //use debug port opened in Electron: Main configuration
3030
"webRoot": "${workspaceFolder}",

0 commit comments

Comments
 (0)