diff options
author | 3top1a <3top1a.official@gmail.com> | 2022-01-22 17:00:03 +0100 |
---|---|---|
committer | 3top1a <3top1a.official@gmail.com> | 2022-01-22 17:00:03 +0100 |
commit | fb67402f17d52646cbb1b3dc98a0a8720fdb4341 (patch) | |
tree | 22604c1c11c3dc1e967a18051c8ba8e9f952ba63 /.vscode | |
parent | b3602310fb4651ed9c1ddf77770d8cfe5984265a (diff) | |
download | Viper-fb67402f17d52646cbb1b3dc98a0a8720fdb4341.tar.gz Viper-fb67402f17d52646cbb1b3dc98a0a8720fdb4341.zip |
Basic, prob. linux only
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/launch.json | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..ef3f9b3 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,17 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Debug Main Process", + "type": "node", + "request": "launch", + "cwd": "${workspaceFolder}", + "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron", + "windows": { + "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd" + }, + "args" : ["."], + "outputCapture": "std" + } + ] + }
\ No newline at end of file |