File tree Expand file tree Collapse file tree 2 files changed +57
-1
lines changed Expand file tree Collapse file tree 2 files changed +57
-1
lines changed Original file line number Diff line number Diff line change 43
43
" ${workspaceRoot}/out/test/**/*.js"
44
44
],
45
45
"preLaunchTask" : " npm"
46
- }
46
+ },
47
+ {
48
+ "name" : " windows_master" ,
49
+ // "type": "extensionHost",
50
+ "type" : " extensionHost" ,
51
+ "request" : " launch" ,
52
+ "runtimeExecutable" : " ${execPath}" ,
53
+ "args" : [
54
+ " --extensionDevelopmentPath=${workspaceRoot}" ,
55
+ " --trace-warnings"
56
+ ],
57
+ // "autoAttachChildProcesses": true,
58
+ // "stopOnEntry": false,
59
+ "sourceMaps" : true ,
60
+ "outFiles" : [
61
+ " ${workspaceRoot}/out/src/**/*.js"
62
+ ],
63
+ "trace" : true ,
64
+ "preLaunchTask" : " window_npm"
65
+ },
47
66
]
48
67
}
Original file line number Diff line number Diff line change 8
8
" npm_do"
9
9
]
10
10
},
11
+ {
12
+ "label" : " window_npm" ,
13
+ "dependsOn" : [
14
+ " window_npm_rm" ,
15
+ " window_npm_do"
16
+ ]
17
+ },
18
+ {
19
+ "label" : " window_npm_rm" ,
20
+ "type" : " shell" ,
21
+ "command" : " Remove-item" ,
22
+ "args" : [
23
+ " out" ,
24
+ " -recurse"
25
+ ],
26
+ // "isBackground": true,
27
+ },
28
+ {
29
+ "label" : " window_npm_do" ,
30
+ "type" : " shell" ,
31
+ "command" : " npm" ,
32
+ "group" : {
33
+ "kind" : " build" ,
34
+ "isDefault" : true
35
+ },
36
+ "args" : [
37
+ " run" ,
38
+ " compile" ,
39
+ " --loglevel" ,
40
+ " silent"
41
+ ],
42
+ "isBackground" : true ,
43
+ "presentation" : {
44
+ "reveal" : " silent"
45
+ },
46
+ "problemMatcher" : " $tsc-watch"
47
+ },
11
48
{
12
49
"label" : " npm_rm" ,
13
50
"type" : " shell" ,
You can’t perform that action at this time.
0 commit comments