aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode/launch.json
blob: 7d14571f5f65aef2c113a4be0e240c338dcf5f29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "node",
            "request": "launch",
            "name": "Electron Main",
            "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
            "program": "${workspaceFolder}/build/index.js",
            "protocol": "inspector"
        }
    ]
}