Skip to content

Commit

Permalink
Merge pull request #157 from soerendomroes/main
Browse files Browse the repository at this point in the history
Launch configuration for the LF extension on a socket without a locally developed klighd extension
  • Loading branch information
lhstrh authored Apr 27, 2024
2 parents 38515b4 + 2656a8c commit 8f65879
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"type": "extensionHost"
},
{
"name": "Launch VS Code Extension (Socket) LF",
"name": "Launch VS Code Extension (Socket) LF with Klighd Extension",
"type": "extensionHost",
"request": "launch",
"args": [
Expand All @@ -35,7 +35,26 @@
},
"outFiles": [
"${workspaceFolder}/out/**/*.js",
"${workspaceFolder}/../klighd-vscode/applications/klighd-vscode/dist/**/*.js"
"${workspaceFolder}/../klighd-vscode/applications/klighd-vscode/dist/**/*.js"
],
},
{
"name": "Launch VS Code Extension (Socket) LF",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}/",
],
"env": {
"LF_LS_PORT": "7670"
},
"skipFiles": [
"<node_internals>/**"
],
"sourceMaps": true,
"smartStep": true,
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
},
{
Expand Down

0 comments on commit 8f65879

Please sign in to comment.