From 96bf9bafdbae657c86e71672b62679d056a85a2a Mon Sep 17 00:00:00 2001 From: Artem Pitikin Date: Fri, 28 Jun 2024 23:57:40 +0300 Subject: [PATCH] fix(export-map): remove extra optionsHashesCache's key --- src/utils/export-map.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/utils/export-map.ts b/src/utils/export-map.ts index 167eb3440..73470e15e 100644 --- a/src/utils/export-map.ts +++ b/src/utils/export-map.ts @@ -1104,7 +1104,7 @@ function childContext( } type OptionsHashesCache = Record< - 'settings' | 'parserOptions' | 'parserMeta' | 'languageOptions', + 'settings' | 'parserOptions' | 'parserMeta', { value: unknown; hash: string } > @@ -1112,7 +1112,6 @@ const optionsHashesCache: OptionsHashesCache = { settings: { value: null, hash: '' }, parserOptions: { value: null, hash: '' }, parserMeta: { value: null, hash: '' }, - languageOptions: { value: null, hash: '' }, } function getOptionsHash(key: keyof OptionsHashesCache, value: unknown) {