Skip to content

Commit

Permalink
chore: fix language client break points not working
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Mar 23, 2024
1 parent 8caa6d8 commit 4c08863
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
"--extensionDevelopmentPath=${workspaceRoot}/extensions/vscode"
],
"outFiles": [
"${workspaceRoot}/*/*/*.js",
"${workspaceRoot}/*/*/lib/**/*.js"
"${workspaceRoot}/**/*.js"
],
"preLaunchTask": {
"type": "npm",
Expand All @@ -31,8 +30,7 @@
"--extensionDevelopmentKind=web"
],
"outFiles": [
"${workspaceRoot}/*/*/*.js",
"${workspaceRoot}/*/*/lib/**/*.js"
"${workspaceRoot}/**/*.js"
],
"preLaunchTask": {
"type": "npm",
Expand All @@ -46,8 +44,7 @@
"port": 6009,
"restart": true,
"outFiles": [
"${workspaceRoot}/*/*/*.js",
"${workspaceRoot}/*/*/lib/**/*.js"
"${workspaceRoot}/**/*.js"
]
}
],
Expand Down

0 comments on commit 4c08863

Please sign in to comment.