11// See https://go.microsoft.com/fwlink/?LinkId=733558
22// for the documentation about the tasks.json format
33{
4- "version" : " 2.0.0" ,
5- "tasks" : [
6- {
7- "label" : " npm compile" ,
8- "type" : " process" ,
9- "command" : " powershell.exe" ,
10- "args" : [
11- " npm run compile"
12- ],
13- "group" : {
14- "kind" : " build" ,
15- "isDefault" : true
16- },
17- "presentation" : {
18- "reveal" : " silent"
19- },
20- "problemMatcher" : []
21- },
22- {
23- "label" : " watch" ,
24- "dependsOn" : [
25- " npm: watch:tsc" ,
26- " npm: watch:esbuild"
27- ],
28- "presentation" : {
29- "reveal" : " never"
30- },
31- "group" : " build"
32- },
33- {
34- "type" : " npm" ,
35- "script" : " watch:esbuild" ,
36- "group" : " build" ,
37- "problemMatcher" : [],
38- "isBackground" : true ,
39- "label" : " npm: watch:esbuild" ,
40- "presentation" : {
41- "group" : " watch" ,
42- "reveal" : " never"
43- }
44- },
45- {
46- "type" : " npm" ,
47- "script" : " watch:tsc" ,
48- "group" : " build" ,
49- "problemMatcher" : " $tsc-watch" ,
50- "isBackground" : true ,
51- "label" : " npm: watch:tsc" ,
52- "presentation" : {
53- "group" : " watch" ,
54- "reveal" : " never"
55- }
56- },
57- {
58- "type" : " npm" ,
59- "script" : " watch-tests" ,
60- "problemMatcher" : " $tsc-watch" ,
61- "isBackground" : true ,
62- "presentation" : {
63- "reveal" : " never" ,
64- "group" : " watchers"
65- },
66- "group" : " build"
67- },
68- {
69- "label" : " tasks: watch-tests" ,
70- "dependsOn" : [
71- " npm: watch" ,
72- " npm: watch-tests"
73- ],
74- "problemMatcher" : []
75- }
76- ]
77- }
4+ "version" : " 2.0.0" ,
5+ "tasks" : [
6+ {
7+ "label" : " npm compile" ,
8+ "type" : " npm" ,
9+ "script" : " compile" ,
10+ "group" : {
11+ "kind" : " build" ,
12+ "isDefault" : true
13+ },
14+ "presentation" : {
15+ "reveal" : " silent"
16+ },
17+ "problemMatcher" : []
18+ },
19+ {
20+ "label" : " watch" ,
21+ "dependsOn" : [" npm: watch:tsc" , " npm: watch:esbuild" ],
22+ "presentation" : {
23+ "reveal" : " never"
24+ },
25+ "group" : " build"
26+ },
27+ {
28+ "type" : " npm" ,
29+ "script" : " watch" ,
30+ "group" : " build" ,
31+ "problemMatcher" : [],
32+ "isBackground" : true ,
33+ "label" : " npm: watch" ,
34+ "presentation" : {
35+ "group" : " watch" ,
36+ "reveal" : " never"
37+ }
38+ },
39+ {
40+ "type" : " npm" ,
41+ "script" : " watch:esbuild" ,
42+ "group" : " build" ,
43+ "problemMatcher" : [],
44+ "isBackground" : true ,
45+ "label" : " npm: watch:esbuild" ,
46+ "presentation" : {
47+ "group" : " watch" ,
48+ "reveal" : " never"
49+ }
50+ },
51+ {
52+ "type" : " npm" ,
53+ "script" : " watch:tsc" ,
54+ "group" : " build" ,
55+ "problemMatcher" : " $tsc-watch" ,
56+ "isBackground" : true ,
57+ "label" : " npm: watch:tsc" ,
58+ "presentation" : {
59+ "group" : " watch" ,
60+ "reveal" : " never"
61+ }
62+ },
63+ {
64+ "type" : " npm" ,
65+ "script" : " watch-tests" ,
66+ "problemMatcher" : " $tsc-watch" ,
67+ "isBackground" : true ,
68+ "presentation" : {
69+ "reveal" : " never" ,
70+ "group" : " watchers"
71+ },
72+ "group" : " build"
73+ },
74+ {
75+ "label" : " tasks: watch-tests" ,
76+ "dependsOn" : [" npm: watch" , " npm: watch-tests" ],
77+ "problemMatcher" : []
78+ }
79+ ]
80+ }
0 commit comments