]> git.lizzy.rs Git - rust.git/blob - .vscode/tasks.json
Minimize TypeScript build
[rust.git] / .vscode / tasks.json
1 // See https://go.microsoft.com/fwlink/?LinkId=733558
2 // for the documentation about the tasks.json format
3 {
4   "version": "2.0.0",
5   "tasks": [
6     {
7       "label": "Build Extension",
8       "group": "build",
9       "type": "npm",
10       "script": "watch",
11       "path": "editors/code/",
12       "problemMatcher": {
13         "base": "$tsc-watch",
14         "fileLocation": ["relative", "${workspaceFolder}/editors/code/"]
15       },
16       "isBackground": true,
17       "presentation": {
18         "reveal": "never"
19       },
20     },
21     {
22       "label": "Build Server",
23       "group": "build",
24       "type": "shell",
25       "command": "cargo build --package ra_lsp_server",
26       "problemMatcher": "$rustc"
27     },
28   ]
29 }