We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 890007c commit b0d6bf2Copy full SHA for b0d6bf2
.vscode/tasks.json
@@ -1,10 +1,27 @@
1
{
2
// See https://go.microsoft.com/fwlink/?LinkId=733558
3
// for the documentation about the tasks.json format
4
- "version": "0.1.0",
+ "version": "2.0.0",
5
"command": "tsc",
6
- "isShellCommand": true,
7
- "args": ["-p", "."],
8
- "showOutput": "silent",
9
- "problemMatcher": "$tsc"
+ "args": [
+ "-p",
+ "."
+ ],
10
+ "problemMatcher": "$tsc",
11
+ "tasks": [
12
+ {
13
+ "label": "tsc",
14
+ "type": "shell",
15
+ "command": "tsc",
16
17
18
19
20
21
+ "group": {
22
+ "_id": "build",
23
+ "isDefault": false
24
+ }
25
26
+ ]
27
}
0 commit comments