Skip to content

Commit 3e81b39

Browse files
committed
VSCode tasks: split screen tsc and shell
1 parent 8753c7b commit 3e81b39

File tree

1 file changed

+21
-6
lines changed

1 file changed

+21
-6
lines changed

.vscode/tasks.json

+21-6
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,29 @@
1414
"problemMatcher": [
1515
"$tsc-watch"
1616
],
17-
"group": {
17+
"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+
"presentation": {
30+
"group": "tsc-and-shell"
31+
}
32+
},
33+
{
34+
"label": "TS and shell",
35+
"dependsOn": ["TypeScript watch", "Shell"],
36+
"group": {
1837
"kind": "build",
1938
"isDefault": true
20-
},
21-
"presentation": {
22-
"reveal": "never",
23-
"panel": "dedicated"
2439
}
25-
}
40+
}
2641
]
2742
}

0 commit comments

Comments
 (0)