File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33 // for the documentation about the tasks.json format
44 "version" : " 2.0.0" ,
55 "tasks" : [
6- {
7- "label" : " Run Dev Test" ,
8- "type" : " npm" ,
9- "script" : " dev-test" ,
10- "problemMatcher" : [],
11- "group" : {
12- "kind" : " test" ,
13- "isDefault" : true
14- },
15- "presentation" : {
16- "reveal" : " always" ,
17- "panel" : " shared" ,
18- "showReuseMessage" : true ,
19- "clear" : true
20- },
21- "runOptions" : {
22- "runOn" : " default"
23- }
24- },
25- {
26- "label" : " TypeScript Build" ,
27- "type" : " typescript" ,
28- "tsconfig" : " tsconfig.json" ,
29- "problemMatcher" : [" $tsc" ],
30- "group" : {
31- "kind" : " build" ,
32- "isDefault" : true
33- },
34- "presentation" : {
35- "reveal" : " always" ,
36- "panel" : " shared" ,
37- "showReuseMessage" : true ,
38- "clear" : false
39- },
40- "runOptions" : {
41- "runOn" : " folderOpen"
42- }
43- },
44- {
45- "label" : " NPM Install" ,
46- "type" : " shell" ,
47- "command" : " npm install" ,
48- "problemMatcher" : [],
49- "group" : " build" ,
50- "presentation" : {
51- "reveal" : " always" ,
52- "panel" : " shared" ,
53- "clear" : true
54- },
55- "runOptions" : {
56- "runOn" : " folderOpen"
57- }
58- },
59- {
60- "label" : " Lint Code" ,
61- "type" : " npm" ,
62- "script" : " lint" ,
63- "problemMatcher" : [" $eslint-stylish" ],
64- "group" : {
65- "kind" : " test" ,
66- "isDefault" : false
67- },
68- "presentation" : {
69- "reveal" : " always" ,
70- "panel" : " shared" ,
71- "showReuseMessage" : true ,
72- "clear" : true
73- }
74- }
6+
757 ]
76- }
8+ }
You can’t perform that action at this time.
0 commit comments