Open relief-melone opened 9 months ago
Sure, I would take a PR, https-proxy-agent is the module we normally use
Also note that we have been publishing a standard DAP server to our GH releases for a while. nvim-dap may want to move over to that...
Alright. Will check that module out as well and create that pr. Forked it for now and can confirm that it does build behind the proxy now
https://github.com/microsoft/vscode-js-debug/pull/1965
Took a little longer due to vacation
vscode-js-debug is being used in e.g. nvim. To make use of debugging it's dap plugin needs to build a vscode-js-debug instance. This works fine usually running
npx gulp vsDebugServerBundle
However it woll not work behind corporate proxies because in the gulp task l10n:bundle-download got is being used to fetch the vscode-loc repo. got does not nativly support proxy variables like https_proxy. Suggestion would be to add support with something like this (
if this finds acceptance I'd gladly submit a PR