From 0e3bb39710e4f9e64bed9ab113fcb363aa9ef266 Mon Sep 17 00:00:00 2001 From: RossTheRoss Date: Thu, 18 Mar 2021 09:09:05 -0500 Subject: Start Hw5 --- .vscode/launch.json | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to '.vscode') diff --git a/.vscode/launch.json b/.vscode/launch.json index cc25112..7037196 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,12 +4,20 @@ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ + { + "command": "npm start", + "name": "Node Start (npm)", + "request": "launch", + "type": "node-terminal" + }, + { "type": "java", "name": "Debug (Launch) with Arguments Prompt", "request": "launch", "mainClass": "", - "args": "${command:SpecifyProgramArgs}" + "args": "${command:SpecifyProgramArgs}", + "cwd": "${fileDirname}" }, { "name": "Python", @@ -27,7 +35,7 @@ "program": "${workspaceFolder}/DEBUG_C", "args": [], "stopAtEntry": false, - "cwd": "${workspaceFolder}", + "cwd": "${fileDirname}", "environment": [], "externalConsole": false, "MIMode": "gdb", -- cgit v1.2.3