Skip to content

Commit

Permalink
Update LKG.
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRosenwasser committed Nov 20, 2023
1 parent d09b1bf commit 27047e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/tsc.js
Expand Up @@ -82018,7 +82018,7 @@ function createTypeChecker(host) {
}
const target = getExportSymbolOfValueSymbolIfExported(resolveAlias(symbol));
if (target === unknownSymbol) {
return true;
return !excludeTypeOnlyValues || !getTypeOnlyAliasDeclaration(symbol);
}
return !!(getSymbolFlags(
symbol,
Expand Down
2 changes: 1 addition & 1 deletion lib/tsserver.js
Expand Up @@ -86722,7 +86722,7 @@ function createTypeChecker(host) {
}
const target = getExportSymbolOfValueSymbolIfExported(resolveAlias(symbol));
if (target === unknownSymbol) {
return true;
return !excludeTypeOnlyValues || !getTypeOnlyAliasDeclaration(symbol);
}
return !!(getSymbolFlags(
symbol,
Expand Down
2 changes: 1 addition & 1 deletion lib/typescript.js
Expand Up @@ -84489,7 +84489,7 @@ ${lanes.join("\n")}
}
const target = getExportSymbolOfValueSymbolIfExported(resolveAlias(symbol));
if (target === unknownSymbol) {
return true;
return !excludeTypeOnlyValues || !getTypeOnlyAliasDeclaration(symbol);
}
return !!(getSymbolFlags(
symbol,
Expand Down

0 comments on commit 27047e3

Please sign in to comment.