@doccov/sdk 0.3.1 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3212,8 +3212,8 @@ function deriveImportPath(sourceFile, baseDir) {
|
|
|
3212
3212
|
function resolveExportTarget(symbol, checker) {
|
|
3213
3213
|
let targetSymbol = symbol;
|
|
3214
3214
|
if (symbol.flags & ts2.SymbolFlags.Alias) {
|
|
3215
|
-
const aliasTarget = checker.
|
|
3216
|
-
if (aliasTarget) {
|
|
3215
|
+
const aliasTarget = checker.getAliasedSymbol(symbol);
|
|
3216
|
+
if (aliasTarget && aliasTarget !== symbol) {
|
|
3217
3217
|
targetSymbol = aliasTarget;
|
|
3218
3218
|
}
|
|
3219
3219
|
}
|