Files
openclaw/.vscode/tasks.json
Andrew Porter 9abf01faf0 feat(DX): Add Out-of-the-Box Support for Debugging in VSCode-Based IDEs (#45710)
Merged via squash.

Prepared head SHA: dd5c0c59f2
Co-authored-by: SwissArmyBud <7257907+SwissArmyBud@users.noreply.github.com>
Co-authored-by: jalehman <550978+jalehman@users.noreply.github.com>
Reviewed-by: @jalehman
2026-05-05 12:41:28 -07:00

24 lines
414 B
JSON

{
"version": "2.0.0",
"options": {
"env": {
"OUTPUT_SOURCE_MAPS": "1"
}
},
"tasks": [
{
"label": "debug:rebuild",
"type": "shell",
"command": "pnpm clean:dist && pnpm build",
"group": "none",
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
}
}
]
}