File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff 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,
Original file line number Diff line number Diff 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,
Original file line number Diff line number Diff 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,
You can’t perform that action at this time.
0 commit comments