-
How do I attach a debugger (preferably VSCode) to my backend code in a fullstack application? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
So I got it running by using dx bundle and then just launching a debug target using the lldb plugin. So, in tasks.json: and in launch.json under "configurations:
Doesn't allow hot swapping, but good enough for now, |
Beta Was this translation helpful? Give feedback.
So I got it running by using dx bundle and then just launching a debug target using the lldb plugin. So, in tasks.json:
{
"tasks": [
{
"taskName": "dxbundle",
"suppressTaskName": true,
"command": "dx",
"args": ["bundle", "--platform", "web"]
}
]
}
and in launch.json under "configurations:
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'appname'",
"initCommands": [],
"preLaunchTask": "dxbundle",
Doesn't allow hot swapping, but good enough for now,