Skip to content

Commit 3b47e67

Browse files
committed
chore: remove unrelated changes to Extension/.vscode/tasks.json
1 parent c7eef6c commit 3b47e67

File tree

1 file changed

+15
-17
lines changed

1 file changed

+15
-17
lines changed

Extension/.vscode/tasks.json

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,28 @@
11
{
2-
// See https://go.microsoft.com/fwlink/?LinkId=733558
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
33
// for the documentation about the tasks.json format
44
"version": "2.0.0",
55
"tasks": [
66
{
7-
"label": "build",
8-
"type": "shell",
9-
"command": "make",
7+
"label": "compile",
8+
"type": "npm",
9+
"script": "compile",
10+
"problemMatcher": "$tsc",
1011
"group": {
1112
"kind": "build",
1213
"isDefault": true
13-
},
14-
"problemMatcher": ["$gcc"],
15-
"options": {
16-
"cwd": "${workspaceFolder}/Code Samples/Fib"
17-
},
18-
"detail": "Build C++ Fibonacci sample using Makefile"
14+
}
1915
},
2016
{
21-
"label": "clean",
22-
"type": "shell",
23-
"command": "make clean",
24-
"options": {
25-
"cwd": "${workspaceFolder}/Code Samples/Fib"
26-
}
17+
"label": "watch",
18+
"type": "npm",
19+
"script": "watch",
20+
"group": {
21+
"kind": "build",
22+
"isDefault": true
23+
},
24+
"isBackground": true,
25+
"problemMatcher": "$tsc-watch",
2726
}
2827
]
2928
}
30-

0 commit comments

Comments
 (0)