File tree 2 files changed +14
-1
lines changed
src/vs/platform/environment 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,13 @@ export interface ParsedArgs {
75
75
'force' ?: boolean ;
76
76
'force-user-env' ?: boolean ;
77
77
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 ;
79
85
'js-flags' ?: string ;
80
86
'disable-gpu' ?: boolean ;
81
87
'nolazy' ?: boolean ;
Original file line number Diff line number Diff line change @@ -112,7 +112,14 @@ export const OPTIONS: OptionDescriptions<Required<ParsedArgs>> = {
112
112
'disable-inspect' : { type : 'boolean' } ,
113
113
'force-user-env' : { type : 'boolean' } ,
114
114
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' } ,
115
120
'js-flags' : { type : 'string' } , // chrome js flags
121
+ 'inspect' : { type : 'string' } ,
122
+ 'inspect-brk' : { type : 'string' } ,
116
123
'nolazy' : { type : 'boolean' } , // node inspect
117
124
'_urls' : { type : 'string[]' } ,
118
125
You can’t perform that action at this time.
0 commit comments