Skip to content

Commit

Permalink
fix(resolver): only forceignore real FS tree
Browse files Browse the repository at this point in the history
  • Loading branch information
cristiand391 committed Sep 1, 2023
1 parent f288319 commit 49bbf76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resolve/metadataResolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export class MetadataResolver {
const components: SourceComponent[] = [];
const ignore = new Set();

if (this.forceIgnore?.denies(dir)) {
if (this.tree instanceof NodeFSTreeContainer && this.forceIgnore?.denies(dir)) {
return components;
}

Expand Down

0 comments on commit 49bbf76

Please sign in to comment.