Created
June 27, 2021 17:26
-
-
Save Eugeny/6acbc5feb9450dd224e9a9968138b8b7 to your computer and use it in GitHub Desktop.
Terminus VSCode launch configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Electron: Main", | |
"protocol": "inspector", | |
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron", | |
"env": { | |
"TERMINUS_DEV": "1" | |
}, | |
"runtimeArgs": [ | |
"--remote-debugging-port=9223", | |
"app" | |
] | |
}, | |
{ | |
"name": "Electron: Renderer", | |
"type": "pwa-chrome", | |
"request": "attach", | |
"port": 9223, | |
"webRoot": "${workspaceFolder}", | |
"timeout": 30000 | |
} | |
], | |
"compounds": [ | |
{ | |
"name": "Electron: All", | |
"configurations": [ | |
"Electron: Main", | |
"Electron: Renderer" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment