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.
1 parent 6c2f36c commit 978f478Copy full SHA for 978f478
src/index.ts
@@ -414,6 +414,8 @@ function initMappers(options: InternalResolverOptions) {
414
]),
415
]
416
417
+ const processedPaths = new Set<string>()
418
+
419
mappers = projectPaths
420
.flatMap(projectPath => {
421
let tsconfigResult: TsConfigResult | null
@@ -429,8 +431,6 @@ function initMappers(options: InternalResolverOptions) {
429
431
})
430
432
.filter(isDefined)
433
- const processedPaths = new Set<string>()
-
434
function getMapper(tsconfigResult: TsConfigResult | null): Mapper[] {
435
const list: Mapper[] = []
436
0 commit comments