webui/.vscode/tasks.json

48 lines
1.0 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Start Proxy",
"type": "shell",
"command": "./proxy.cmd",
"isBackground": true,
"problemMatcher": {
"pattern": {
"regexp": ".*"
},
"background": {
"activeOnStart": true,
"beginsPattern": "^.*",
"endsPattern": "listening on|started|ready"
}
}
},
{
"label": "Start CRA",
"type": "shell",
"command": "npm start",
"isBackground": true,
"options": {
"env": {
"BROWSER": "none"
}
},
"problemMatcher": {
"pattern": {
"regexp": ".*"
},
"background": {
"activeOnStart": true,
"beginsPattern": "^.*",
"endsPattern": "Compiled successfully|webpack compiled"
}
}
},
{
"label": "Start All",
"dependsOn": ["Start Proxy", "Start CRA"],
"dependsOrder": "parallel"
}
]
}