I have an application working on Intellij Ultimate edition. There I noticed, it had an option in HTTP Proxy to autodetect proxy settings. I click the checkmark that says Automatic proxy Configuration URL: http://webconfig.org.com/autoproxy.pac
org is a replacement for company and I am able to download artifacts from the organization.
I try to replicate this in visual studio code. I've given the same information in settings.json
"http.proxyStrictSSL": false,
"http.proxyAuthorization": null,
"http.proxy": "http://webconfig.org.com/autoproxy.pac",
but it won't work. I do not see a setting for autodetect proxy in VS code. Since my pom files have errors, the application will not recognize or load the main class file. What is the proper way to configure the proxy settings in vs code, so that I can reach artifacts within my organization?