We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to debug with vscode, i got the main process to work but not the renderer process
config:
{ "version": "0.2.0", "configurations": [ { "type": "node", "request": "launch", "name": "Electron: Main", "protocol": "inspector", "runtimeExecutable": "yarn", "runtimeArgs": [ "dev", "--remote-debugging-port=9223" ], "windows": { "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd" } }, { "name": "Electron: Renderer", "type": "chrome", "request": "attach", "port": 9223, "webRoot": "${workspaceFolder}", "timeout": 30000 } ], "compounds": [ { "name": "Electron: All", "configurations": [ "Electron: Main", "Electron: Renderer" ] } ] }
The text was updated successfully, but these errors were encountered:
Did you figure this out eventually?
Sorry, something went wrong.
Nope
Correction: This works on 'debugger' statements, but breakpoints don't break.
{ "configurations": [ { // ONLY 'debugger' // BREAKPOINTS NOT WORKING "command": "yarn dev", "name": "Run App in Dev Mode", "request": "launch", "type": "node-terminal" } ] }
If anyone else got any ideas, then comment.
No branches or pull requests
I want to debug with vscode, i got the main process to work but not the renderer process
config:
The text was updated successfully, but these errors were encountered: