vscode-copilot-bridge/.vscode/tasks.json
2025-08-20 19:58:00 +02:00

21 lines
362 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "compile",
"group": "build",
"problemMatcher": ["$tsc"],
"label": "npm: compile"
},
{
"type": "npm",
"script": "watch",
"isBackground": true,
"problemMatcher": [
"$tsc-watch"
],
"label": "npm: watch"
}
]
}