chore: add disable-dev-shm-usage to known chromium flags list

Fixes https://github.com/microsoft/vscode/issues/143226
This commit is contained in:
deepak1556 2022-02-17 15:03:30 +09:00
parent dc09cc515a
commit 86200d5424
2 changed files with 2 additions and 0 deletions

View file

@ -107,6 +107,7 @@ export interface NativeParsedArgs {
'allow-insecure-localhost'?: boolean;
'log-net-log'?: string;
'vmodule'?: string;
'disable-dev-shm-usage'?: boolean;
// MS Build command line arg
'ms-enable-electron-run-as-node'?: boolean;

View file

@ -149,6 +149,7 @@ export const OPTIONS: OptionDescriptions<Required<NativeParsedArgs>> = {
'log-net-log': { type: 'string' },
'vmodule': { type: 'string' },
'_urls': { type: 'string[]' },
'disable-dev-shm-usage': { type: 'boolean' },
_: { type: 'string[]' } // main arguments
};