summaryrefslogtreecommitdiff
path: root/.vscode/launch.json
blob: 703b4cd11027ffcfa97f3f8ec820db463eec6e9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
  "version": "0.2.0",
  "configurations": [
    {
      "name": "Debug Main Process",
      "type": "node",
      "request": "launch",
      "nodeVersionHint": 16,
      "env": {
        "PATH": "${env:PATH}:/usr/lib/sdk/node16/bin/",
      },
      "cwd": "${workspaceFolder}",
      "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
      "runtimeArgs": [
        "--enable-logging",
        "--no-sandbox",
        "."
      ],
      "windows": {
        "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
      },
      "args" : ["."],
      "outputCapture": "std",
      "sourceMaps": false,
      "stopOnEntry": false,
    }
  ]
}