31 lines
602 B
JSON
31 lines
602 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "web:dev",
|
|
"type": "shell",
|
|
"command": "pnpm dev",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/web"
|
|
},
|
|
"isBackground": true,
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "dedicated",
|
|
"group": "web"
|
|
},
|
|
"problemMatcher": {
|
|
"owner": "custom",
|
|
"pattern": {
|
|
"regexp": "."
|
|
},
|
|
"background": {
|
|
"activeOnStart": true,
|
|
"beginsPattern": ".",
|
|
"endsPattern": "Ready in|Local:"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|