Files
whattoplay/.vscode/tasks.json
2026-03-01 12:03:42 +01:00

17 lines
230 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "vite: dev server",
"type": "shell",
"command": "npm",
"args": [
"run",
"dev"
],
"isBackground": true,
"problemMatcher": [],
"group": "build"
}
]
}