Server debugging support for vscode.
All checks were successful
Linting and tests / Linting (push) Successful in 5s

This commit is contained in:
2025-09-14 12:38:45 +05:00
parent 3cfc74affa
commit 466b58b41d
9 changed files with 128 additions and 17 deletions

18
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,18 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Run bunkerd debug build",
"type": "shell",
"command": "task server:localdev:bunkerd:build-debug && task server:localdev:bunkerd:restart-debug",
"group": {
"kind": "test",
"isDefault": true
},
"presentation": {
// Do not open terminal every time debug is launched.
"reveal": "silent"
}
}
]
}