We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8753c7b commit 3e81b39Copy full SHA for 3e81b39
.vscode/tasks.json
@@ -14,14 +14,29 @@
14
"problemMatcher": [
15
"$tsc-watch"
16
],
17
- "group": {
+ "presentation": {
18
+ "group": "tsc-and-shell"
19
+ }
20
+ },
21
+ {
22
+ "label": "Shell",
23
+ "type": "shell",
24
+ "command": "bash",
25
+ "args": [
26
+ "-l",
27
+ ],
28
+ "isBackground": true,
29
30
31
32
33
34
+ "label": "TS and shell",
35
+ "dependsOn": ["TypeScript watch", "Shell"],
36
+ "group": {
37
"kind": "build",
38
"isDefault": true
- },
- "presentation": {
- "reveal": "never",
- "panel": "dedicated"
39
}
- }
40
41
]
42
0 commit comments