From 17bb850527faf889143d3bdd22fa2d5e81c0c5b6 Mon Sep 17 00:00:00 2001 From: s2 Date: Thu, 6 Jun 2019 15:40:02 +0200 Subject: [PATCH] debug --- .vscode/launch.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..9f80c693 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,16 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "node", + "request": "launch", + "name": "Electron Main", + "runtimeExecutable": "${workspaceFolder}/app/node_modules/.bin/electron", + //"program": "${workspaceFolder}/app/main.js", + "args": ["${workspaceFolder}/app/main.js", "C:\\Temp\\mobs"] + } + ] +}