-
-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
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
VS Code Debugging #814
Comments
Are you asking about debugging the renderer process (Ember app) or the main process? |
the renderer process |
I haven't done it myself (I usually just use the dev tools), but if you run "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/ember",
"runtimeArgs": [
"electron",
"---",
"--remote-debugging-port=9223"
],
"windows": {
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/ember"
} (and I think keeping the rest the same). I'd love to hear if this works for you so we can add it to the documentation, or if you're up for it, would love a PR adding this to the documentation. |
@bendemboski for the Ember app, wouldn't it be the same as any other Ember app? |
I think so, except it has to be launched via |
Is it possible to run ember electron using the debugging tools in VSCode? i.e. to set breakpoints, etc.
The text was updated successfully, but these errors were encountered: