diff --git a/src/common/global.ts b/src/common/global.ts index 2869e630..0214a777 100644 --- a/src/common/global.ts +++ b/src/common/global.ts @@ -42,6 +42,7 @@ export enum ConfigKey { compilerPath = 'compiler.compilerPath', exclude = 'exclude', general = 'general', + generalV2 = 'v2.general', helpPathV1 = 'v1.file.helpPath', helpPathV2 = 'v2.file.helpPath', indentCodeAfterIfDirective = 'v1.formatter.indentCodeAfterIfDirective', diff --git a/src/test/config.e2e.ts b/src/test/config.e2e.ts index 038e2dd3..35950e14 100644 --- a/src/test/config.e2e.ts +++ b/src/test/config.e2e.ts @@ -69,7 +69,7 @@ suite('exclude', () => { before(async () => { await updateConfig<{ librarySuggestions: LibIncludeType }>( - ConfigKey.general, + ConfigKey.generalV2, { librarySuggestions: LibIncludeType.All }, ); });