vscode-php-intellisense/.vscode/launch.json

32 lines
895 B
JSON
Raw Normal View History

2016-08-25 15:55:00 +00:00
// A launch configuration that compiles the extension and then opens it inside a new window
{
"version": "0.1.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
2018-11-11 17:32:17 +00:00
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
2016-08-25 15:55:00 +00:00
"stopOnEntry": false,
"sourceMaps": true,
"outDir": "${workspaceRoot}/out"
},
{
"name": "Launch Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
2018-11-11 17:32:17 +00:00
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test"],
2016-08-25 15:55:00 +00:00
"stopOnEntry": false,
"sourceMaps": true,
"outDir": "${workspaceRoot}/out/test"
},
{
"name": "Listen for XDebug",
"type": "php",
"request": "launch"
}
]
}