diff options
-rw-r--r-- | .vscode/launch.json | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index bb11cc0..c6946c5 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,6 +4,7 @@ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
+
{
"command": "npm start",
"name": "Node Start (npm)",
@@ -14,7 +15,7 @@ {
"type": "java",
- "name": "Debug (Launch) with Arguments Prompt",
+ "name": "Java with Argument Prompt",
"request": "launch",
"mainClass": "",
"args": "${command:SpecifyProgramArgs}",
@@ -24,6 +25,7 @@ "name": "Python",
"type": "python",
"request": "launch",
+ "args": ["${command:SpecifyProgramArgs}"],
"program": "${file}",
"console": "integratedTerminal",
"cwd": "${fileDirname}",
@@ -34,7 +36,7 @@ "request": "launch",
"preLaunchTask": "Build c++",
"program": "${workspaceFolder}/DEBUG_C",
- "args": [],
+ "args": ["${command:SpecifyProgramArgs}",],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
|