vscode/extensions/php/.vscode/launch.json

18 lines
324 B
JSON
Raw Normal View History

2016-03-16 12:29:29 +01:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
2017-09-19 11:21:41 +02:00
"--extensionDevelopmentPath=${workspaceFolder}"
2016-03-16 12:29:29 +01:00
],
"stopOnEntry": false,
"sourceMaps": true,
"preLaunchTask": "npm"
2017-09-19 11:21:41 +02:00
}
2016-03-16 12:29:29 +01:00
]
}