File tree Expand file tree Collapse file tree 1 file changed +21
-7
lines changed Expand file tree Collapse file tree 1 file changed +21
-7
lines changed Original file line number Diff line number Diff line change 7
7
"request" : " launch" ,
8
8
"name" : " Launch Client" ,
9
9
"runtimeExecutable" : " ${execPath}" ,
10
- "args" : [" --extensionDevelopmentPath=${workspaceRoot}" ],
11
- "outFiles" : [" ${workspaceRoot}/dist/client/*.js" ],
10
+ "args" : [
11
+ " --disable-extensions" ,
12
+ " --extensionDevelopmentPath=${workspaceRoot}"
13
+ ],
14
+ "outFiles" : [
15
+ " ${workspaceRoot}/dist/client/*.js"
16
+ ],
12
17
"preLaunchTask" : {
13
18
"type" : " npm" ,
14
19
"script" : " watch"
20
25
"name" : " Attach to Server" ,
21
26
"port" : 6009 ,
22
27
"restart" : true ,
23
- "outFiles" : [" ${workspaceRoot}/dist/server/*.js" ]
28
+ "outFiles" : [
29
+ " ${workspaceRoot}/dist/server/*.js"
30
+ ]
24
31
},
25
32
{
26
33
"name" : " Integration test: Attach to server" ,
29
36
"skipFiles" : [
30
37
" <node_internals>/**"
31
38
],
32
- "outFiles" : [" ${workspaceRoot}/dist/integration/lsp/*.js" ],
39
+ "outFiles" : [
40
+ " ${workspaceRoot}/dist/integration/lsp/*.js"
41
+ ],
33
42
"type" : " node"
34
43
},
35
44
{
42
51
" --extensionTestsPath=${workspaceRoot}/dist/integration/e2e" ,
43
52
" ${workspaceRoot}/integration/project"
44
53
],
45
- "outFiles" : [" ${workspaceRoot}/dist/integration/e2e/*.js" ],
54
+ "outFiles" : [
55
+ " ${workspaceRoot}/dist/integration/e2e/*.js"
56
+ ],
46
57
"preLaunchTask" : {
47
58
"type" : " npm" ,
48
59
"script" : " compile:integration"
52
63
"compounds" : [
53
64
{
54
65
"name" : " Client + Server" ,
55
- "configurations" : [" Launch Client" , " Attach to Server" ]
66
+ "configurations" : [
67
+ " Launch Client" ,
68
+ " Attach to Server"
69
+ ]
56
70
}
57
71
]
58
- }
72
+ }
You can’t perform that action at this time.
0 commit comments