From c1a3b02ff65809cd85b84c1baad585e4d770c2e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Wehmh=C3=B6ner?= Date: Fri, 8 May 2020 17:22:00 +0200 Subject: [PATCH] added open file debug --- .vscode/launch.json | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 06aec74..043c869 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -15,7 +15,7 @@ { "type": "node", "request": "launch", - "name": "Start .mC", + "name": "Generate JSON from .mC and run", "console": "integratedTerminal", "program": "${workspaceFolder}/index.ts", "args": [ @@ -46,6 +46,22 @@ "outFiles": [ "${workspaceFolder}/bin/**/*.js" ] + }, + { + "type": "node", + "request": "launch", + "name": "Start .mC", + "console": "integratedTerminal", + "program": "${workspaceFolder}/index.ts", + "args": [ + "${file}" + ], + "skipFiles": [ + "/**" + ], + "outFiles": [ + "${workspaceFolder}/bin/**/*.js" + ] } ] } \ No newline at end of file