mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
37 lines
796 B
JSON
37 lines
796 B
JSON
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build Extension",
|
|
"type": "npm",
|
|
"script": "compile",
|
|
"problemMatcher": {
|
|
"owner": "typescript",
|
|
"pattern": "$tsc",
|
|
"fileLocation": [
|
|
"relative",
|
|
"${workspaceRoot}/editors/code"
|
|
]
|
|
},
|
|
"path": "editors/code/"
|
|
},
|
|
{
|
|
"label": "Build Server",
|
|
"type": "shell",
|
|
"command": "cargo build --package ra_lsp_server",
|
|
"problemMatcher": "$rustc"
|
|
},
|
|
{
|
|
"label": "Build All",
|
|
"group": "build",
|
|
"dependsOn": [
|
|
"Build Extension",
|
|
"Build Server"
|
|
],
|
|
"problemMatcher": []
|
|
},
|
|
]
|
|
}
|