Skip to content

Commit b0d6bf2

Browse files
committed
- auto-migration of tasks
Signed-off-by: Vincent Biret <[email protected]>
1 parent 890007c commit b0d6bf2

File tree

1 file changed

+22
-5
lines changed

1 file changed

+22
-5
lines changed

.vscode/tasks.json

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,27 @@
11
{
22
// See https://go.microsoft.com/fwlink/?LinkId=733558
33
// for the documentation about the tasks.json format
4-
"version": "0.1.0",
4+
"version": "2.0.0",
55
"command": "tsc",
6-
"isShellCommand": true,
7-
"args": ["-p", "."],
8-
"showOutput": "silent",
9-
"problemMatcher": "$tsc"
6+
"args": [
7+
"-p",
8+
"."
9+
],
10+
"problemMatcher": "$tsc",
11+
"tasks": [
12+
{
13+
"label": "tsc",
14+
"type": "shell",
15+
"command": "tsc",
16+
"args": [
17+
"-p",
18+
"."
19+
],
20+
"problemMatcher": "$tsc",
21+
"group": {
22+
"_id": "build",
23+
"isDefault": false
24+
}
25+
}
26+
]
1027
}

0 commit comments

Comments
 (0)