Merlin32ForVSCode/.vscode/launch.json
2017-08-28 19:15:42 -07:00

13 lines
378 B
JSON

// A launch configuration that launches the extension inside a new window
{
"version": "0.1.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ]
}
]
}