vscode-basex/.vscode/launch.json

15 lines
284 B
JSON
Raw Normal View History

2015-11-22 06:48:40 +00:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceRoot}"
2016-01-13 23:03:46 +00:00
],
"preLaunchTask": "build"
2015-11-22 06:48:40 +00:00
}
]
}