Skip to content

Commit b20cf19

Browse files
committed
Format
1 parent ba96a2f commit b20cf19

File tree

2 files changed

+160
-125
lines changed

2 files changed

+160
-125
lines changed

.vscode/launch.json

+16-5
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,12 @@
77
"request": "launch",
88
"name": "Launch Client",
99
"runtimeExecutable": "${execPath}",
10-
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
11-
"outFiles": ["${workspaceRoot}/client/out/**/*.js"],
10+
"args": [
11+
"--extensionDevelopmentPath=${workspaceRoot}"
12+
],
13+
"outFiles": [
14+
"${workspaceRoot}/client/out/**/*.js"
15+
],
1216
"preLaunchTask": {
1317
"type": "npm",
1418
"script": "watch"
@@ -20,7 +24,9 @@
2024
"name": "Attach to Server",
2125
"port": 6009,
2226
"restart": true,
23-
"outFiles": ["${workspaceRoot}/server/out/**/*.js"]
27+
"outFiles": [
28+
"${workspaceRoot}/server/out/**/*.js"
29+
]
2430
},
2531
{
2632
"name": "Language Server E2E Test",
@@ -32,13 +38,18 @@
3238
"--extensionTestsPath=${workspaceRoot}/client/out/test/index",
3339
"${workspaceRoot}/client/testFixture"
3440
],
35-
"outFiles": ["${workspaceRoot}/client/out/test/**/*.js"]
41+
"outFiles": [
42+
"${workspaceRoot}/client/out/test/**/*.js"
43+
]
3644
}
3745
],
3846
"compounds": [
3947
{
4048
"name": "Client + Server",
41-
"configurations": ["Launch Client", "Attach to Server"]
49+
"configurations": [
50+
"Launch Client",
51+
"Attach to Server"
52+
]
4253
}
4354
]
4455
}

0 commit comments

Comments
 (0)