Skip to content

Commit 96bf9ba

Browse files
committed
fix(export-map): remove extra optionsHashesCache's key
1 parent 9846c3d commit 96bf9ba

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/utils/export-map.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1104,15 +1104,14 @@ function childContext(
11041104
}
11051105

11061106
type OptionsHashesCache = Record<
1107-
'settings' | 'parserOptions' | 'parserMeta' | 'languageOptions',
1107+
'settings' | 'parserOptions' | 'parserMeta',
11081108
{ value: unknown; hash: string }
11091109
>
11101110

11111111
const optionsHashesCache: OptionsHashesCache = {
11121112
settings: { value: null, hash: '' },
11131113
parserOptions: { value: null, hash: '' },
11141114
parserMeta: { value: null, hash: '' },
1115-
languageOptions: { value: null, hash: '' },
11161115
}
11171116

11181117
function getOptionsHash(key: keyof OptionsHashesCache, value: unknown) {

0 commit comments

Comments
 (0)