You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,7 +69,7 @@ The main process can be debugged with the pwa-node debugger that ships with Visu
69
69
70
70
The launch configuration looks like this:
71
71
72
-
```json
72
+
```jsonc
73
73
{
74
74
"name":"Electron: Main",
75
75
"type":"pwa-node", //use the node debugger that comes with VS Code
@@ -96,7 +96,7 @@ In the `runtimeArgs` section, we open a port for the renderer process. There is
96
96
### Renderer process
97
97
Debugging a renderer process requires the "Debugger for Chrome" extension.
98
98
99
-
```json
99
+
```jsonc
100
100
{
101
101
"name":"Electron: Renderer",
102
102
"type":"chrome", //use the Debugger for Chrome (extension)
@@ -111,7 +111,7 @@ In the `port` section, we specify the debugging port that we chose in the main p
111
111
### Compound configuration
112
112
Visual Studio Code can only run a single configuration at a time, but we need to run the Main and the Renderer configurations at the same time. The solution are compound configurations (found in [vscode-recipes](https://github.com/Microsoft/vscode-recipes/tree/master/Electron))
0 commit comments