set up regolith watch when debugging

This commit is contained in:
ForestOfLight
2025-07-02 20:29:04 -07:00
Unverified
parent 657467f49d
commit bff7024021
3 changed files with 59 additions and 1 deletions
+44
View File
@@ -0,0 +1,44 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "regolith: run",
"type": "shell",
"command": "regolith run",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"close": true
}
},
{
"label": "regolith: watch",
"type": "shell",
"command": "regolith watch",
"isBackground": true,
"problemMatcher": {
"pattern": [
{
"regexp": ".",
"file": 1,
"location": 2,
"message": 3
}
],
"background": {
"activeOnStart": true,
"beginsPattern": ".",
"endsPattern": "."
}
},
"presentation": {
"echo": true,
"close": true
}
}
]
}