hblang-vscode/.vscode/launch.json

15 lines
271 B
JSON
Raw Normal View History

2024-09-28 09:34:34 -05:00
{
"version": "0.1.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceRoot}"
],
"sourceMaps": true,
},
]
}