granite-rust/.vscode/tasks.json

37 lines
796 B
JSON
Raw Normal View History

// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
{
"version": "2.0.0",
"tasks": [
{
2019-12-30 00:15:39 +01:00
"label": "Build Extension",
"type": "npm",
"script": "compile",
"problemMatcher": {
"owner": "typescript",
"pattern": "$tsc",
"fileLocation": [
"relative",
"${workspaceRoot}/editors/code"
]
},
"path": "editors/code/"
},
{
2019-12-30 00:15:39 +01:00
"label": "Build Server",
"type": "shell",
2019-12-30 00:15:39 +01:00
"command": "cargo build --package ra_lsp_server",
"problemMatcher": "$rustc"
},
{
"label": "Build All",
"group": "build",
"dependsOn": [
"Build Extension",
2019-12-30 00:15:39 +01:00
"Build Server"
],
"problemMatcher": []
},
]
2019-12-29 18:01:15 +01:00
}