Files
2026-02-11 14:59:08 -08:00

69 lines
1.9 KiB
JSON

{
"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
}
},
{
"label": "regolith: watch preview",
"type": "shell",
"command": "regolith watch preview",
"isBackground": true,
"problemMatcher": {
"pattern": [
{
"regexp": ".",
"file": 1,
"location": 2,
"message": 3
}
],
"background": {
"activeOnStart": true,
"beginsPattern": ".",
"endsPattern": "."
}
},
"presentation": {
"echo": true,
"close": true
}
}
]
}