File tree 3 files changed +22
-6
lines changed
3 files changed +22
-6
lines changed Original file line number Diff line number Diff line change 11
11
" --extensions-dir=${workspaceRoot}/." ,
12
12
" --extensionDevelopmentPath=${workspaceRoot}"
13
13
],
14
- "stopOnEntry" : false ,
15
14
"sourceMaps" : true ,
16
- "outFiles" : [" ${workspaceRoot}/out/src/**/*.js" ]
15
+ "outFiles" : [" ${workspaceRoot}/out/src/**/*.js" ],
16
+ "preLaunchTask" : " ${defaultBuildTask}"
17
17
},
18
18
{
19
19
"name" : " Launch Tests" ,
26
26
" --extensionDevelopmentPath=${workspaceRoot}" ,
27
27
" --extensionTestsPath=${workspaceRoot}/out/test"
28
28
],
29
- "stopOnEntry" : false ,
30
29
"sourceMaps" : true ,
31
30
"outFiles" : [" ${workspaceRoot}/out/test/**/*.js" ]
32
31
}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ // See https://go.microsoft.com/fwlink/?LinkId=733558
2
+ // for the documentation about the tasks.json format
3
+ {
4
+ "version" : " 2.0.0" ,
5
+ "tasks" : [
6
+ {
7
+ "type" : " npm" ,
8
+ "script" : " watch" ,
9
+ "isBackground" : true ,
10
+ "presentation" : {
11
+ "reveal" : " never" ,
12
+ "group" : " watchers"
13
+ },
14
+ "group" : {
15
+ "kind" : " build" ,
16
+ "isDefault" : true
17
+ }
18
+ }
19
+ ]
20
+ }
You can’t perform that action at this time.
0 commit comments