Skip to content

Commit 27047e3

Browse files
Update LKG.
1 parent d09b1bf commit 27047e3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: lib/tsc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -82018,7 +82018,7 @@ function createTypeChecker(host) {
8201882018
}
8201982019
const target = getExportSymbolOfValueSymbolIfExported(resolveAlias(symbol));
8202082020
if (target === unknownSymbol) {
82021-
return true;
82021+
return !excludeTypeOnlyValues || !getTypeOnlyAliasDeclaration(symbol);
8202282022
}
8202382023
return !!(getSymbolFlags(
8202482024
symbol,

Diff for: lib/tsserver.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -86722,7 +86722,7 @@ function createTypeChecker(host) {
8672286722
}
8672386723
const target = getExportSymbolOfValueSymbolIfExported(resolveAlias(symbol));
8672486724
if (target === unknownSymbol) {
86725-
return true;
86725+
return !excludeTypeOnlyValues || !getTypeOnlyAliasDeclaration(symbol);
8672686726
}
8672786727
return !!(getSymbolFlags(
8672886728
symbol,

Diff for: lib/typescript.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -84489,7 +84489,7 @@ ${lanes.join("\n")}
8448984489
}
8449084490
const target = getExportSymbolOfValueSymbolIfExported(resolveAlias(symbol));
8449184491
if (target === unknownSymbol) {
84492-
return true;
84492+
return !excludeTypeOnlyValues || !getTypeOnlyAliasDeclaration(symbol);
8449384493
}
8449484494
return !!(getSymbolFlags(
8449584495
symbol,

0 commit comments

Comments
 (0)