From cd2316af9b3368504e2ad2e828c32e017ed31594 Mon Sep 17 00:00:00 2001 From: Marcellin Nshimiyimana Date: Wed, 8 Nov 2017 19:16:25 +0545 Subject: [PATCH] Fix "program path" issue with `"program": "${workspaceRoot}\\bin\\www"`Vscode fails saying that it cannot find the program path --- node-express-javascript/.vscode/launch.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node-express-javascript/.vscode/launch.json b/node-express-javascript/.vscode/launch.json index f64ff17..e7059ca 100644 --- a/node-express-javascript/.vscode/launch.json +++ b/node-express-javascript/.vscode/launch.json @@ -8,7 +8,7 @@ "type": "node", "request": "launch", "name": "Launch Program", - "program": "${workspaceRoot}\\bin\\www" + "program": "${workspaceRoot}/bin/www" }, { "type": "node", @@ -33,4 +33,4 @@ "internalConsoleOptions": "openOnSessionStart" } ] -} \ No newline at end of file +}