There was an error while loading. Please reload this page.
1 parent 8fdb7a5 commit 8fe0de8Copy full SHA for 8fe0de8
.vscode/tasks.json
@@ -2,22 +2,16 @@
2
"version": "2.0.0",
3
"tasks": [
4
{
5
- "type": "typescript",
6
- "tsconfig": "tsconfig.json",
7
- "option": "watch",
+ "label": "build",
+ "command": "npm run build",
+ "type": "shell",
8
"problemMatcher": [
9
- "$tsc-watch"
+ "$tsc"
10
],
11
"group": {
12
"kind": "build",
13
"isDefault": true
14
- },
15
- "label": "tsc: watch - tsconfig.json"
16
17
- {
18
- "label": "build",
19
- "command": "npm run build",
20
- "type": "shell"
+ }
21
},
22
23
"label": "coverage:open",
@@ -61,6 +55,15 @@
61
55
"kind": "test",
62
56
63
57
}
58
+ },
59
+ {
60
+ "label": "tsc: watch",
+ "type": "typescript",
+ "tsconfig": "tsconfig.json",
+ "option": "watch",
64
+ "problemMatcher": [
65
+ "$tsc-watch"
66
+ ]
67
68
]
69
0 commit comments