Skip to content

Commit c0414e0

Browse files
fix lint
1 parent c6a1f17 commit c0414e0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ function getTSConfigFile(tsconfigPath: string): ts.ParsedCommandLine {
133133
const matchGlob = (globs: string[]) => {
134134
const matchers = globs.map((g) => matcher(g));
135135
return (filename: string) =>
136-
Boolean(filename && matchers.find((matcher) => matcher(filename)));
136+
Boolean(filename && matchers.find((match) => match(filename)));
137137
};
138138

139139
/** Inject typescript docgen information into modules at the end of a build */

0 commit comments

Comments
 (0)