File tree Expand file tree Collapse file tree 4 files changed +11401
-11388
lines changed
Expand file tree Collapse file tree 4 files changed +11401
-11388
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- {
7- "type" : " npm" ,
8- "script" : " watch" ,
9- "problemMatcher" : " $ts-webpack-watch" ,
10- "isBackground" : true ,
11- "presentation" : {
12- "reveal" : " never" ,
13- "group" : " watchers"
14- },
15- "group" : {
16- "kind" : " build" ,
17- "isDefault" : true
18- }
19- },
20- {
21- "type" : " npm" ,
22- "script" : " watch-tests" ,
23- "problemMatcher" : " $tsc-watch" ,
24- "isBackground" : true ,
25- "presentation" : {
26- "reveal" : " never" ,
27- "group" : " watchers"
28- },
29- "group" : " build"
30- },
31- {
32- "label" : " tasks: watch-tests" ,
33- "dependsOn" : [
34- " npm: watch" ,
35- " npm: watch-tests"
36- ],
37- "problemMatcher" : []
38- }
39- ]
40- }
4+ "version" : " 2.0.0" ,
5+ "tasks" : [
6+ {
7+ "type" : " npm" ,
8+ "label" : " npm: install" ,
9+ "script" : " install" ,
10+ "runOptions" : {
11+ "runOn" : " folderOpen"
12+ }
13+ },
14+ {
15+ "type" : " npm" ,
16+ "script" : " watch" ,
17+ "problemMatcher" : " $ts-webpack-watch" ,
18+ "isBackground" : true ,
19+ "presentation" : {
20+ "reveal" : " never" ,
21+ "group" : " watchers"
22+ },
23+ "group" : {
24+ "kind" : " build" ,
25+ "isDefault" : true
26+ },
27+ "dependsOn" : [
28+ " npm: install"
29+ ]
30+ },
31+ {
32+ "type" : " npm" ,
33+ "script" : " watch-tests" ,
34+ "problemMatcher" : " $tsc-watch" ,
35+ "isBackground" : true ,
36+ "presentation" : {
37+ "reveal" : " never" ,
38+ "group" : " watchers"
39+ },
40+ "group" : " build"
41+ },
42+ {
43+ "label" : " tasks: watch-tests" ,
44+ "dependsOn" : [
45+ " npm: watch" ,
46+ " npm: watch-tests"
47+ ],
48+ "problemMatcher" : []
49+ }
50+ ]
51+ }
You can’t perform that action at this time.
0 commit comments