We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ingestion
1 parent b943921 commit 44a357cCopy full SHA for 44a357c
ingestion/src/process/prepare/processor/file.ts
@@ -82,9 +82,10 @@ export class FileProcessor implements IFileProcessor {
82
.join(...currentFileDirectoryParts, relativePath)
83
.replaceAll("\\", "/")
84
} else {
85
- finalPath = path
86
- .join(currentFileDirectory, relativePath)
87
- .replaceAll("\\", "/")
+ finalPath =
+ path
+ .join(currentFileDirectory, relativePath)
88
+ .replaceAll("\\", "/") + ".ts"
89
}
90
91
parsedImports.set(importName, finalPath)
0 commit comments