( config: ResolvingEditorBrowserConfiguration, )
| 1101 | } |
| 1102 | |
| 1103 | export function applyEditorBrowserDefaults( |
| 1104 | config: ResolvingEditorBrowserConfiguration, |
| 1105 | ): AnyEditorBrowserConfiguration { |
| 1106 | return config.request === 'attach' |
| 1107 | ? { ...editorBrowserAttachConfigDefaults, ...config } |
| 1108 | : { ...editorBrowserLaunchConfigDefaults, ...config }; |
| 1109 | } |
| 1110 | |
| 1111 | export function applyExtensionHostDefaults( |
| 1112 | config: ResolvingExtensionHostConfiguration, |