Skip to content

Commit

Permalink
fix: use correct settings for server launch config (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
neilcampbell authored Dec 5, 2023
1 parent d8974d0 commit 287f640
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}",
"program": "${workspaceFolder}/src/debugAdapter.ts",
"args": ["--server=4711"],
"program": "${workspaceFolder}/src/cli.ts",
"args": ["--port=4711"],
"outFiles": ["${workspaceFolder}/out/**/*.js"],
"preLaunchTask": "npm: compile"
},
Expand Down

0 comments on commit 287f640

Please sign in to comment.