Skip to content

Commit 2e1b613

Browse files
committed
Run VSCode Build task in a single task to fix problems pane conflicts
Workaround for microsoft#119824
1 parent af74760 commit 2e1b613

File tree

1 file changed

+32
-13
lines changed

1 file changed

+32
-13
lines changed

.vscode/tasks.json

+32-13
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,31 @@
5959
},
6060
{
6161
"label": "VS Code - Build",
62-
"dependsOn": [
63-
"Core - Build",
64-
"Ext - Build"
65-
],
66-
"group": {
67-
"kind": "build",
68-
"isDefault": true
62+
"type": "npm",
63+
"script": "watchd",
64+
"isBackground": true,
65+
"presentation": {
66+
"reveal": "never",
67+
"group": "buildWatchers",
68+
"close": false
6969
},
70-
"problemMatcher": []
70+
"problemMatcher": {
71+
"owner": "typescript",
72+
"applyTo": "closedDocuments",
73+
"fileLocation": [
74+
"absolute"
75+
],
76+
"pattern": {
77+
"regexp": "Error: ([^(]+)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\): (.*)$",
78+
"file": 1,
79+
"location": 2,
80+
"message": 3
81+
},
82+
"background": {
83+
"beginsPattern": "Starting compilation",
84+
"endsPattern": "Finished compilation"
85+
}
86+
}
7187
},
7288
{
7389
"type": "npm",
@@ -94,13 +110,16 @@
94110
"problemMatcher": "$tsc"
95111
},
96112
{
113+
"type": "npm",
114+
"script": "kill-watchd",
97115
"label": "Kill VS Code - Build",
98-
"dependsOn": [
99-
"Kill Core - Build",
100-
"Kill Ext - Build"
101-
],
102116
"group": "build",
103-
"problemMatcher": []
117+
"presentation": {
118+
"reveal": "never",
119+
"group": "buildKillers",
120+
"close": true
121+
},
122+
"problemMatcher": "$tsc"
104123
},
105124
{
106125
"label": "Restart VS Code - Build",

0 commit comments

Comments
 (0)