File tree Expand file tree Collapse file tree 1 file changed +17
-3
lines changed
generators/app/templates/_.vscode Expand file tree Collapse file tree 1 file changed +17
-3
lines changed Original file line number Diff line number Diff line change 4
4
"version" : " 2.0.0" ,
5
5
"tasks" : [
6
6
{
7
- "label" : " Compile " ,
7
+ "label" : " Watch " ,
8
8
"type" : " npm" ,
9
9
"script" : " watch" ,
10
10
"problemMatcher" : " $tsc-watch" ,
16
16
"cwd" : " ${workspaceFolder}"
17
17
}
18
18
},
19
+ {
20
+ "label" : " Compile" ,
21
+ "type" : " npm" ,
22
+ "script" : " compile" ,
23
+ "problemMatcher" : " $tsc-watch" ,
24
+ "isBackground" : true ,
25
+ "presentation" : {
26
+ "reveal" : " never"
27
+ },
28
+ "options" : {
29
+ "cwd" : " ${workspaceFolder}"
30
+ }
31
+ },
19
32
{
20
33
"label" : " Build" ,
21
- "type" : " process " ,
34
+ "type" : " shell " ,
22
35
"command" : " npm" ,
23
36
"options" : {
24
37
"cwd" : " ${workspaceFolder}"
30
43
"group" : {
31
44
"kind" : " build" ,
32
45
"isDefault" : true
33
- }
46
+ },
47
+ "dependsOn" : " Compile"
34
48
}
35
49
]
36
50
}
You can’t perform that action at this time.
0 commit comments