From a040399e44c72e11c6ab2c244ccd32e2aa1f5e93 Mon Sep 17 00:00:00 2001 From: Kaiserdj Date: Mon, 5 Jul 2021 19:56:34 +0200 Subject: [PATCH] Add normal launch in vscode --- .vscode/launch.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 965ce24..b97038c 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -13,6 +13,18 @@ "args" : [".", "--d"], "outputCapture": "std" }, + { + "name": "Normal", + "type": "node", + "request": "launch", + "cwd": "${workspaceFolder}", + "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron", + "windows": { + "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd" + }, + "args" : ["."], + "outputCapture": "std" + }, { "name": "Api", "type": "node",