aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
blob: b3b912dbc50c79035df36dc7570f017afdeb0743 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// From https://github.com/Tyriar/vscode-theme-sapphire/blob/master/.vscode/launch.json
// A launch configuration that compiles the extension and then opens it inside a new window
{
	"version": "0.2.0",
    "configurations": [
        {
            "name": "Extension",
            "type": "extensionHost",
            "request": "launch",
            "runtimeExecutable": "${execPath}",
            "args": [
                "--extensionDevelopmentPath=${workspaceFolder}"
            ],
            "outFiles": [
                "${workspaceFolder}/out/**/*.js"
            ],
            "preLaunchTask": "npm: start"
        }
    ]
}