-
-
Notifications
You must be signed in to change notification settings - Fork 672
Open
Labels
Description
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
albyrock87