Setup php extension debugging

This commit is contained in:
Martin Aeschlimann
2016-03-16 12:29:29 +01:00
parent 64c7dddb71
commit c6186a2d9d
5 changed files with 51 additions and 6 deletions

18
extensions/php/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,18 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceRoot}"
],
"stopOnEntry": false,
"sourceMaps": true,
"outDir": "${workspaceRoot}/out",
"preLaunchTask": "npm"
}
]
}