From b995eec40461d30ee4286d74f1fa2d1a97e2f915 Mon Sep 17 00:00:00 2001 From: Orta Therox Date: Mon, 22 Jan 2024 15:48:38 -0800 Subject: [PATCH] Update config.ts for typo (#4594) Summary: At least I think it is probably a typo - did it in the GitHub UI, so things might break Pull Request resolved: https://github.com/facebook/relay/pull/4594 Reviewed By: monicatang Differential Revision: D52973190 Pulled By: captbaritone fbshipit-source-id: 8529fb47c2f0b260535afd37d6f80df4ec26df2b --- vscode-extension/src/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vscode-extension/src/config.ts b/vscode-extension/src/config.ts index 2366a650a8a18..15d15ce044530 100644 --- a/vscode-extension/src/config.ts +++ b/vscode-extension/src/config.ts @@ -24,7 +24,7 @@ export function getConfig(scope?: ConfigurationScope): Config { pathToRelay: configuration.get('pathToRelay') ?? null, pathToConfig: configuration.get('pathToConfig') ?? null, pathToLocateCommand: configuration.get('pathToLocateCommand') ?? null, - lspOutputLevel: configuration.get('lspOutputLevel') ?? 'quiet-with-errros', + lspOutputLevel: configuration.get('lspOutputLevel') ?? 'quiet-with-errors', compilerOutpuLevel: configuration.get('compilerOutputLevel') ?? 'info', rootDirectory: configuration.get('rootDirectory') ?? null, autoStartCompiler: configuration.get('autoStartCompiler') ?? false,