File tree Expand file tree Collapse file tree 1 file changed +26
-25
lines changed Expand file tree Collapse file tree 1 file changed +26
-25
lines changed Original file line number Diff line number Diff line change 11{
2- // See http://go.microsoft.com/fwlink/?LinkId=733558
3- // for the documentation about the tasks.json format
4- "version" : " 0.1.0" ,
5- "command" : " npm" ,
6- "isShellCommand" : true ,
7- "showOutput" : " always" ,
8- "suppressTaskName" : true ,
9- "tasks" : [
10- {
11- "taskName" : " install" ,
12- "args" : [" install" ]
13- },
14- {
15- "taskName" : " start" ,
16- "args" : [" run" , " start" ]
17- },
18- {
19- "taskName" : " build" ,
20- "args" : [" run" , " build" , " -s" ]
21- },
22- {
23- "taskName" : " test" ,
24- "args" : [" run" , " test" , " -s" ]
25- }
26- ]
2+ // See https://go.microsoft.com/fwlink/?LinkId=733558
3+ // for the documentation about the tasks.json format
4+ "version" : " 2.0.0" ,
5+ "tasks" : [
6+ {
7+ "type" : " npm" ,
8+ "script" : " build" ,
9+ "group" : {
10+ "kind" : " build" ,
11+ "isDefault" : true
12+ }
13+ },
14+ {
15+ "type" : " npm" ,
16+ "script" : " test" ,
17+ "group" : {
18+ "kind" : " test" ,
19+ "isDefault" : true
20+ }
21+ },
22+ {
23+ "type" : " npm" ,
24+ "script" : " start" ,
25+ "problemMatcher" : []
26+ }
27+ ]
2728}
You can’t perform that action at this time.
0 commit comments