Skip to content

Instantly share code, notes, and snippets.

@Eugeny
Created June 27, 2021 17:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Eugeny/6acbc5feb9450dd224e9a9968138b8b7 to your computer and use it in GitHub Desktop.
Save Eugeny/6acbc5feb9450dd224e9a9968138b8b7 to your computer and use it in GitHub Desktop.
Terminus VSCode launch configuration
{
"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