Skip to content

Commit 4c08863

Browse files
committed
chore: fix language client break points not working
1 parent 8caa6d8 commit 4c08863

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.vscode/launch.json

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
"--extensionDevelopmentPath=${workspaceRoot}/extensions/vscode"
1313
],
1414
"outFiles": [
15-
"${workspaceRoot}/*/*/*.js",
16-
"${workspaceRoot}/*/*/lib/**/*.js"
15+
"${workspaceRoot}/**/*.js"
1716
],
1817
"preLaunchTask": {
1918
"type": "npm",
@@ -31,8 +30,7 @@
3130
"--extensionDevelopmentKind=web"
3231
],
3332
"outFiles": [
34-
"${workspaceRoot}/*/*/*.js",
35-
"${workspaceRoot}/*/*/lib/**/*.js"
33+
"${workspaceRoot}/**/*.js"
3634
],
3735
"preLaunchTask": {
3836
"type": "npm",
@@ -46,8 +44,7 @@
4644
"port": 6009,
4745
"restart": true,
4846
"outFiles": [
49-
"${workspaceRoot}/*/*/*.js",
50-
"${workspaceRoot}/*/*/lib/**/*.js"
47+
"${workspaceRoot}/**/*.js"
5148
]
5249
}
5350
],

0 commit comments

Comments
 (0)