File tree Expand file tree Collapse file tree 1 file changed +18
-13
lines changed Expand file tree Collapse file tree 1 file changed +18
-13
lines changed Original file line number Diff line number Diff line change 1+ // VSCode Tasks
2+ // https://code.visualstudio.com/docs/editor/tasks
3+
14// Available variables which can be used inside of strings.
25// ${workspaceRoot}: the root folder of the team
36// ${file}: the current opened file
710// ${cwd}: the current working directory of the spawned process
811
912{
10- "version" : " 0.1 .0" ,
13+ "version" : " 2.0 .0" ,
1114 "command" : " npm" ,
12- "isShellCommand" : true ,
13- "suppressTaskName" : true ,
1415 "tasks" : [
1516 {
16- "taskName" : " lint" ,
17- "args" : [" run" , " lint" ],
18- "showOutput" : " always" ,
19- "problemMatcher" : " $eslint-stylish" ,
20- "isBuildCommand" : true
17+ "type" : " npm" ,
18+ "script" : " lint" ,
19+ "group" : {
20+ "kind" : " build" ,
21+ "isDefault" : true
22+ },
23+ "problemMatcher" : " $tsc" ,
2124 },
2225 {
23- "taskName" : " test" ,
24- "args" : [" run" , " mocha" ],
25- "showOutput" : " always" ,
26- "isTestCommand" : true
27- }
26+ "type" : " npm" ,
27+ "script" : " test:node" ,
28+ "group" : {
29+ "kind" : " test" ,
30+ "isDefault" : true
31+ },
32+ },
2833 ]
2934}
You can’t perform that action at this time.
0 commit comments