vscode-basex/.vscode/launch.json

15 lines
273 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-05 01:59:58 +00:00
"preLaunchTask": "tsc"
2015-11-22 06:48:40 +00:00
}
]
}