Use terminal groups for build

Fixes https://github.com/microsoft/vscode/issues/122287
This commit is contained in:
Alex Ross 2021-04-27 11:47:15 +02:00
parent 4550c3b454
commit f247d234d7
No known key found for this signature in database
GPG key ID: 89DDDBA66CBA7840

12
.vscode/tasks.json vendored
View file

@ -7,7 +7,8 @@
"label": "Build VS Code Core",
"isBackground": true,
"presentation": {
"reveal": "never"
"reveal": "never",
"group": "buildWatchers"
},
"problemMatcher": {
"owner": "typescript",
@ -33,7 +34,8 @@
"label": "Build VS Code Extensions",
"isBackground": true,
"presentation": {
"reveal": "never"
"reveal": "never",
"group": "buildWatchers"
},
"problemMatcher": {
"owner": "typescript",
@ -71,7 +73,8 @@
"label": "Kill Build VS Code Core",
"group": "build",
"presentation": {
"reveal": "never"
"reveal": "never",
"group": "buildKillers"
},
"problemMatcher": "$tsc"
},
@ -81,7 +84,8 @@
"label": "Kill Build VS Code Extensions",
"group": "build",
"presentation": {
"reveal": "never"
"reveal": "never",
"group": "buildKillers"
},
"problemMatcher": "$tsc"
},