Files
RunExtension/.vscode/tasks.json
2025-09-17 18:53:40 +02:00

23 lines
377 B
JSON

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