This repository was archived by the owner on Jan 6, 2026. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +35
-25
lines changed
Expand file tree Collapse file tree 1 file changed +35
-25
lines changed Original file line number Diff line number Diff line change 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- {
4+ "version" : " 2.0.0" ,
5+ "tasks" : [
6+ {
7+ "type" : " npm" ,
8+ "script" : " compile" ,
9+ "problemMatcher" : [
10+ " $tsc"
11+ ],
12+ "group" : " build" ,
13+ "label" : " npm: compile" ,
14+ "detail" : " npm run check-types && npm run lint && node esbuild.js"
15+ },
16+ {
717 "label" : " watch" ,
818 "dependsOn" : [
919 " npm: watch:tsc" ,
2939 "reveal" : " never"
3040 }
3141 },
32- {
42+ {
3343 "type" : " npm" ,
3444 "script" : " watch:tsc" ,
3545 "group" : " build" ,
4151 "reveal" : " never"
4252 }
4353 },
44- {
45- "type" : " npm" ,
46- "script" : " watch-tests" ,
47- "problemMatcher" : " $tsc-watch" ,
48- "isBackground" : true ,
49- "presentation" : {
50- "reveal" : " never" ,
51- "group" : " watchers"
52- },
53- "group" : " build"
54- },
55- {
56- "label" : " tasks: watch-tests" ,
57- "dependsOn" : [
58- " npm: watch" ,
59- " npm: watch-tests"
60- ],
61- "problemMatcher" : []
62- }
63- ]
64- }
54+ {
55+ "type" : " npm" ,
56+ "script" : " watch-tests" ,
57+ "problemMatcher" : " $tsc-watch" ,
58+ "isBackground" : true ,
59+ "presentation" : {
60+ "reveal" : " never" ,
61+ "group" : " watchers"
62+ },
63+ "group" : " build"
64+ },
65+ {
66+ "label" : " tasks: watch-tests" ,
67+ "dependsOn" : [
68+ " npm: watch" ,
69+ " npm: watch-tests"
70+ ],
71+ "problemMatcher" : []
72+ }
73+ ]
74+ }
You can’t perform that action at this time.
0 commit comments