UNPKG

@aladas-org/cryptocalc

Version:
31 lines 1 kB
{ "version": "0.2.0", "configurations": [ { "name": "Debug Main Process", "type": "node", "request": "launch", "cwd": "${workspaceRoot}", "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron", "windows": { "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron.cmd" }, "program": "${workspaceRoot}/www/_main/electron_main.js", "protocol": "inspector" }, { "name": "Debug Renderer Process", "type": "chrome", "request": "launch", "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron", "windows": { "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron.cmd" }, "runtimeArgs": [ "${workspaceRoot}/www/_main/electron_main.js", "--remote-debugging-port=9222" ], "webRoot": "${workspaceRoot}" } ] }