Skip to content

Commit

Permalink
dev: use bundled backend in launch configurations
Browse files Browse the repository at this point in the history
Adapts the browser launch configurations to use the bundled backend.
This allows to start the browser application after it was built once,
independent of the current state of the native Node module
dependencies.
  • Loading branch information
sdirix committed Feb 6, 2025
1 parent 9eb2bbe commit 1609442
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"type": "node",
"request": "launch",
"name": "Launch Browser Backend",
"program": "${workspaceFolder}/applications/browser/src-gen/backend/main.js",
"program": "${workspaceFolder}/applications/browser/lib/backend/main.js",
"args": [
"--hostname=0.0.0.0",
"--port=3000",
Expand Down Expand Up @@ -94,7 +94,7 @@
"type": "node",
"request": "launch",
"name": "Launch Browser Backend (eclipse.jdt.ls)",
"program": "${workspaceFolder}/applications/browser/src-gen/backend/main.js",
"program": "${workspaceFolder}/applications/browser/lib/backend/main.js",
"args": [
"--log-level=debug",
"--root-dir=${workspaceFolder}/../eclipse.jdt.ls/org.eclipse.jdt.ls.core",
Expand Down Expand Up @@ -150,7 +150,7 @@
"type": "node",
"request": "launch",
"args": [
"${workspaceFolder}/applications/browser/src-gen/backend/main.js",
"${workspaceFolder}/applications/browser/lib/backend/main.js",
"${workspaceFolder}/plugins/vscode-api-tests/testWorkspace",
"--port",
"3030",
Expand Down

0 comments on commit 1609442

Please sign in to comment.