2019-01-18 04:59:08 -06:00
|
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
|
|
// for the documentation about the tasks.json format
|
|
|
|
{
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
2019-12-29 17:15:39 -06:00
|
|
|
"label": "Build Extension",
|
2019-12-29 19:22:52 -06:00
|
|
|
"group": "build",
|
2019-01-18 04:59:08 -06:00
|
|
|
"type": "npm",
|
2019-12-29 19:22:52 -06:00
|
|
|
"script": "watch",
|
|
|
|
"path": "editors/code/",
|
2019-01-18 04:59:08 -06:00
|
|
|
"problemMatcher": {
|
2019-12-29 19:22:52 -06:00
|
|
|
"base": "$tsc-watch",
|
|
|
|
"fileLocation": ["relative", "${workspaceFolder}/editors/code/"]
|
|
|
|
},
|
|
|
|
"isBackground": true,
|
2019-01-18 04:59:08 -06:00
|
|
|
},
|
|
|
|
{
|
2019-12-29 17:15:39 -06:00
|
|
|
"label": "Build Server",
|
2019-12-29 19:22:52 -06:00
|
|
|
"group": "build",
|
2019-01-18 04:59:08 -06:00
|
|
|
"type": "shell",
|
2020-02-18 05:33:16 -06:00
|
|
|
"command": "cargo build --package rust-analyzer",
|
2019-03-10 07:54:18 -05:00
|
|
|
"problemMatcher": "$rustc"
|
2019-01-18 04:59:08 -06:00
|
|
|
},
|
2020-04-28 13:15:52 -05:00
|
|
|
{
|
|
|
|
"label": "Build Server (Release)",
|
|
|
|
"group": "build",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "cargo build --release --package rust-analyzer",
|
|
|
|
"problemMatcher": "$rustc"
|
|
|
|
},
|
2019-01-18 04:59:08 -06:00
|
|
|
]
|
2019-12-29 11:01:15 -06:00
|
|
|
}
|