Skip to content

Commit 46ac92c

Browse files
author
Andreas Bartho
committed
Changed README syntax highlighting from json to jscon to allow comments
1 parent 17866c3 commit 46ac92c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ The main process can be debugged with the pwa-node debugger that ships with Visu
6969

7070
The launch configuration looks like this:
7171

72-
```json
72+
```jsonc
7373
{
7474
"name": "Electron: Main",
7575
"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
9696
### Renderer process
9797
Debugging a renderer process requires the "Debugger for Chrome" extension.
9898

99-
```json
99+
```jsonc
100100
{
101101
"name": "Electron: Renderer",
102102
"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
111111
### Compound configuration
112112
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))
113113

114-
```json
114+
```jsonc
115115
"compounds": [ //launch multiple configurations concurrently
116116
{
117117
"name": "Electron: All",

0 commit comments

Comments
 (0)