Skip to content

Commit fe5ab15

Browse files
committed
Fix compilation
1 parent edb704a commit fe5ab15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/server/node/server.cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export async function main(desc: ProductDescription, args: string[]): Promise<vo
9595
}
9696

9797
// take the local options and remove the ones that don't apply
98-
const options: OptionDescriptions<Required<RemoteParsedArgs>> = { ...OPTIONS, gitCredential: { type: 'string' }, openExternal: { type: 'boolean' } };
98+
const options: OptionDescriptions<Required<RemoteParsedArgs>> = { ...OPTIONS, gitCredential: { type: 'string' }, openExternal: { type: 'boolean' }, preview: { type: 'string' } };
9999
const isSupported = cliCommand ? isSupportedForCmd : isSupportedForPipe;
100100
for (const optionId in OPTIONS) {
101101
const optId = <keyof RemoteParsedArgs>optionId;

0 commit comments

Comments
 (0)