tasks.json
// https://code.visualstudio.com/docs/debugtest/tasks
{
"version": "2.0.0",
"tasks": [
{
"label": "Build VSCode Extension",
"type": "process",
"command": "cargo",
"args": ["xtask", "build", "vscode"],
"isBackground": false,
"presentation": {
"close": true,
"reveal": "always",
"focus": false
},
"group": {
"kind": "build"
}
}
]
}