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

18 lines
362 B
JSON
Raw Normal View History

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