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

18 lines
324 B
JSON
Raw Permalink Normal View History

2024-11-15 06:29:18 +00:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"stopOnEntry": false,
"sourceMaps": true,
"preLaunchTask": "npm"
}
]
}