Files
web/.vscode/tasks.json
T
2025-08-16 22:07:26 +03:00

23 lines
528 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Run",
"type": "shell",
"command": "npm run dev",
"options": {
"cwd": "${workspaceFolder}"
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}