File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed
src/vs/platform/environment Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,13 @@ export interface ParsedArgs {
7575 'force' ?: boolean ;
7676 'force-user-env' ?: boolean ;
7777
78- // node flags
78+ // chromium command line args: https://electronjs.org/docs/all#supported-chrome-command-line-switches
79+ 'no-proxy-server' ?: boolean ;
80+ 'proxy-server' ?: string ;
81+ 'proxy-bypass-list' ?: string ;
82+ 'proxy-pac-url' ?: string ;
83+ 'inspect' ?: string ;
84+ 'inspect-brk' ?: string ;
7985 'js-flags' ?: string ;
8086 'disable-gpu' ?: boolean ;
8187 'nolazy' ?: boolean ;
Original file line number Diff line number Diff line change @@ -112,7 +112,14 @@ export const OPTIONS: OptionDescriptions<Required<ParsedArgs>> = {
112112 'disable-inspect' : { type : 'boolean' } ,
113113 'force-user-env' : { type : 'boolean' } ,
114114
115+ // chromium flags
116+ 'no-proxy-server' : { type : 'boolean' } ,
117+ 'proxy-server' : { type : 'string' } ,
118+ 'proxy-bypass-list' : { type : 'string' } ,
119+ 'proxy-pac-url' : { type : 'string' } ,
115120 'js-flags' : { type : 'string' } , // chrome js flags
121+ 'inspect' : { type : 'string' } ,
122+ 'inspect-brk' : { type : 'string' } ,
116123 'nolazy' : { type : 'boolean' } , // node inspect
117124 '_urls' : { type : 'string[]' } ,
118125
You can’t perform that action at this time.
0 commit comments