We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, How to debug both client and server code in VC? i tried this "configurations": [ { "type": "node", "request": "launch", "name": "Launch Program", "program": "${workspaceRoot}/server/app.ts", "cwd": "${workspaceRoot}", "outFiles": [ "${workspaceRoot}/dist/server/app.js" ], "skipFiles": [ "${workspaceRoot}/node_modules/**/*.js" ], "sourceMaps": true, "console": "externalTerminal" } ]
it is listening only the server. How to launch and attach client as well?
Regards, Selva
The text was updated successfully, but these errors were encountered:
@selvakumarkec Any solution yet ?
Sorry, something went wrong.
I tried asking GPT: https://chatgpt.com/share/6176e479-cc74-48bf-8a2e-163884190623 Idk if it makes sense though.
How do i create a compound configuration inside the project folder ? Can you guide @DavideViolante
No branches or pull requests
Hi,
How to debug both client and server code in VC?
i tried this
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceRoot}/server/app.ts",
"cwd": "${workspaceRoot}",
"outFiles": [
"${workspaceRoot}/dist/server/app.js"
],
"skipFiles": [
"${workspaceRoot}/node_modules/**/*.js"
],
"sourceMaps": true,
"console": "externalTerminal"
}
]
it is listening only the server. How to launch and attach client as well?
Regards,
Selva
The text was updated successfully, but these errors were encountered: