mirror of
https://github.com/larsbaunwall/vscode-copilot-bridge.git
synced 2025-10-05 22:22:59 +00:00
21 lines
362 B
JSON
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"
|
|
}
|
|
]
|
|
}
|