aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
blob: 9e6d2e6eae93de9d8a34a82515ad44161255af8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Run Extension",
            "type": "extensionHost",
            "request": "launch",
            "runtimeExecutable": "${execPath}",
            "args": [
                "--extensionDevelopmentPath=${workspaceFolder}"
            ]
        }
    ]
}