lsp-ai/.vscode/task.json
2024-05-27 09:49:43 -07:00

18 lines
361 B
JSON

{
"version": "0.1.0",
"tasks": [
{
"label": "Build Extension",
"group": "build",
"type": "npm",
"script": "esbuild",
"path": "editors/vscode/",
"problemMatcher": {
"base": "$tsc-watch",
"fileLocation": ["relative", "${workspaceFolder}/editors/vscode/"]
},
"isBackground": true
}
]
}