aboutsummaryrefslogtreecommitdiff
path: root/.vscode/tasks.json
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-12-30 01:22:52 +0000
committerAleksey Kladov <[email protected]>2019-12-30 01:22:52 +0000
commit5846221a39e3d33bdd848106ff8d9520eaa7455d (patch)
treeb3b0cb2c02895bd6633ba4cd6a7139292a552989 /.vscode/tasks.json
parent7192ee842d05611f6fb903810d6ef3a94f63b993 (diff)
Minimize TypeScript build
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r--.vscode/tasks.json27
1 files changed, 10 insertions, 17 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index 79c24b86f..7bd7e3706 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -5,32 +5,25 @@
5 "tasks": [ 5 "tasks": [
6 { 6 {
7 "label": "Build Extension", 7 "label": "Build Extension",
8 "group": "build",
8 "type": "npm", 9 "type": "npm",
9 "script": "compile", 10 "script": "watch",
11 "path": "editors/code/",
10 "problemMatcher": { 12 "problemMatcher": {
11 "owner": "typescript", 13 "base": "$tsc-watch",
12 "pattern": "$tsc", 14 "fileLocation": ["relative", "${workspaceFolder}/editors/code/"]
13 "fileLocation": [ 15 },
14 "relative", 16 "isBackground": true,
15 "${workspaceRoot}/editors/code" 17 "presentation": {
16 ] 18 "reveal": "never"
17 }, 19 },
18 "path": "editors/code/"
19 }, 20 },
20 { 21 {
21 "label": "Build Server", 22 "label": "Build Server",
23 "group": "build",
22 "type": "shell", 24 "type": "shell",
23 "command": "cargo build --package ra_lsp_server", 25 "command": "cargo build --package ra_lsp_server",
24 "problemMatcher": "$rustc" 26 "problemMatcher": "$rustc"
25 }, 27 },
26 {
27 "label": "Build All",
28 "group": "build",
29 "dependsOn": [
30 "Build Extension",
31 "Build Server"
32 ],
33 "problemMatcher": []
34 },
35 ] 28 ]
36} 29}