ttvdrops/.vscode/tasks.json

21 lines
442 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "uv sync -U",
"type": "shell",
"command": "uv",
"args": [
"sync",
"-U"
],
"options": {
"cwd": "${workspaceFolder}"
},
"runOptions": {
"runOn": "folderOpen"
},
"problemMatcher": []
}
]
}