File tree Expand file tree Collapse file tree 1 file changed +15
-17
lines changed Expand file tree Collapse file tree 1 file changed +15
-17
lines changed Original file line number Diff line number Diff line change 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-
You can’t perform that action at this time.
0 commit comments