Improve debug configuration.
All checks were successful
Linting and tests / Linting (push) Successful in 5s

This commit is contained in:
2025-09-15 17:22:59 +05:00
parent b787a2b22a
commit cc5d010204
5 changed files with 42 additions and 8 deletions

17
.vscode/tasks.json vendored
View File

@@ -4,9 +4,22 @@
{
"label": "Run bunkerd debug build",
"type": "shell",
"command": "task server:localdev:bunkerd:stop; task server:localdev:bunkerd:build-debug && task server:localdev:bunkerd:restart-debug",
"command": "task server:localdev:bunkerd:down; task server:localdev:bunkerd:up-debug",
"group": {
"kind": "test",
"kind": "build",
"isDefault": true
},
"presentation": {
// Do not open terminal every time debug is launched.
"reveal": "silent"
}
},
{
"label": "Stop bunkerd debug build",
"type": "shell",
"command": "task server:localdev:bunkerd:down-debug",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {