Skip to content

Commit bd5985b

Browse files
committed
Fix debugging
1 parent 02c9bbe commit bd5985b

File tree

1 file changed

+34
-17
lines changed

1 file changed

+34
-17
lines changed

.vscode/tasks.json

Lines changed: 34 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,50 @@
1+
// See https://go.microsoft.com/fwlink/?LinkId=733558
2+
// for the documentation about the tasks.json format
13
{
24
"version": "2.0.0",
35
"tasks": [
46
{
57
"type": "npm",
6-
"script": "compile",
7-
"group": "build",
8+
"script": "watch",
9+
"problemMatcher": [
10+
"$ts-webpack-watch",
11+
"$tslint-webpack-watch"
12+
],
13+
"isBackground": true,
814
"presentation": {
9-
"panel": "dedicated",
10-
"reveal": "never"
15+
"reveal": "never",
16+
"group": "watchers"
1117
},
12-
"problemMatcher": [
13-
"$tsc"
14-
]
18+
"group": {
19+
"kind": "build",
20+
"isDefault": true
21+
}
1522
},
1623
{
1724
"type": "npm",
18-
"script": "watch",
25+
"script": "watch-tests",
26+
"problemMatcher": "$tsc-watch",
1927
"isBackground": true,
20-
"group": {
21-
"kind": "build",
22-
"isDefault": true
23-
},
2428
"presentation": {
25-
"panel": "dedicated",
26-
"reveal": "never"
29+
"reveal": "never",
30+
"group": "watchers"
2731
},
28-
"problemMatcher": [
29-
"$tsc-watch"
30-
]
32+
"group": "build"
33+
},
34+
{
35+
"label": "tasks: watch-tests",
36+
"dependsOn": [
37+
"npm: watch",
38+
"npm: watch-tests"
39+
],
40+
"problemMatcher": []
41+
},
42+
{
43+
"type": "npm",
44+
"script": "watch-web",
45+
"group": "build",
46+
"isBackground": true,
47+
"problemMatcher": ["$ts-webpack-watch"]
3148
}
3249
]
3350
}

0 commit comments

Comments
 (0)