We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9846c3d commit 96bf9baCopy full SHA for 96bf9ba
src/utils/export-map.ts
@@ -1104,15 +1104,14 @@ function childContext(
1104
}
1105
1106
type OptionsHashesCache = Record<
1107
- 'settings' | 'parserOptions' | 'parserMeta' | 'languageOptions',
+ 'settings' | 'parserOptions' | 'parserMeta',
1108
{ value: unknown; hash: string }
1109
>
1110
1111
const optionsHashesCache: OptionsHashesCache = {
1112
settings: { value: null, hash: '' },
1113
parserOptions: { value: null, hash: '' },
1114
parserMeta: { value: null, hash: '' },
1115
- languageOptions: { value: null, hash: '' },
1116
1117
1118
function getOptionsHash(key: keyof OptionsHashesCache, value: unknown) {
0 commit comments