2019-01-18 12:59:08 +02:00
|
|
|
// 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",
|
2019-01-18 12:59:08 +02:00
|
|
|
"type": "npm",
|
|
|
|
"script": "compile",
|
|
|
|
"problemMatcher": {
|
|
|
|
"owner": "typescript",
|
|
|
|
"pattern": "$tsc",
|
2019-03-10 13:54:18 +01:00
|
|
|
"fileLocation": [
|
|
|
|
"relative",
|
|
|
|
"${workspaceRoot}/editors/code"
|
|
|
|
]
|
2019-01-18 12:59:08 +02:00
|
|
|
},
|
|
|
|
"path": "editors/code/"
|
|
|
|
},
|
|
|
|
{
|
2019-12-30 00:15:39 +01:00
|
|
|
"label": "Build Server",
|
2019-01-18 12:59:08 +02:00
|
|
|
"type": "shell",
|
2019-12-30 00:15:39 +01:00
|
|
|
"command": "cargo build --package ra_lsp_server",
|
2019-03-10 13:54:18 +01:00
|
|
|
"problemMatcher": "$rustc"
|
2019-01-18 12:59:08 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Build All",
|
|
|
|
"group": "build",
|
2019-03-10 13:54:18 +01:00
|
|
|
"dependsOn": [
|
|
|
|
"Build Extension",
|
2019-12-30 00:15:39 +01:00
|
|
|
"Build Server"
|
2019-03-10 13:54:18 +01:00
|
|
|
],
|
2019-01-18 12:59:08 +02:00
|
|
|
"problemMatcher": []
|
2019-03-10 13:54:18 +01:00
|
|
|
},
|
2019-01-18 12:59:08 +02:00
|
|
|
]
|
2019-12-29 18:01:15 +01:00
|
|
|
}
|