2024-05-28 10:20:50 +02:00

36 lines
646 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "check-setup",
"type": "shell",
"command": "cd .. ; ./check_setup.bat",
"isBackground": false
},
{
"type": "npm",
"script": "dev",
"problemMatcher": [
{
"pattern": [
{
"regexp": ".*",
"file": 1,
"location": 2,
"message": 3
}
],
"background": {
"activeOnStart": true,
"beginsPattern": ".*",
"endsPattern": ".*",
}
}
],
"label": "npm: dev",
"detail": "vite --port=8080",
"isBackground": true,
"dependsOn": ["check-setup"]
}
]
}