vscode-copilot-bridge/.vscode/launch.json
2025-08-20 19:58:00 +02:00

37 lines
862 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Run Extension (Copilot Bridge)",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "npm: compile",
"env": {
"BRIDGE_VERBOSE": "1"
}
},
{
"name": "Run Extension + Attach Debug Server",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "npm: watch",
"env": {
"BRIDGE_VERBOSE": "1"
}
}
]
}