Files
whattoplay/.vscode/tasks.json

15 lines
218 B
JSON

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