Skip to content

Commit 44a357c

Browse files
committed
Fixed node linking in ingestion
1 parent b943921 commit 44a357c

File tree

1 file changed

+4
-3
lines changed
  • ingestion/src/process/prepare/processor

1 file changed

+4
-3
lines changed

ingestion/src/process/prepare/processor/file.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,10 @@ export class FileProcessor implements IFileProcessor {
8282
.join(...currentFileDirectoryParts, relativePath)
8383
.replaceAll("\\", "/")
8484
} else {
85-
finalPath = path
86-
.join(currentFileDirectory, relativePath)
87-
.replaceAll("\\", "/")
85+
finalPath =
86+
path
87+
.join(currentFileDirectory, relativePath)
88+
.replaceAll("\\", "/") + ".ts"
8889
}
8990

9091
parsedImports.set(importName, finalPath)

0 commit comments

Comments
 (0)