We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6a1f17 commit c0414e0Copy full SHA for c0414e0
1 file changed
src/plugin.ts
@@ -133,7 +133,7 @@ function getTSConfigFile(tsconfigPath: string): ts.ParsedCommandLine {
133
const matchGlob = (globs: string[]) => {
134
const matchers = globs.map((g) => matcher(g));
135
return (filename: string) =>
136
- Boolean(filename && matchers.find((matcher) => matcher(filename)));
+ Boolean(filename && matchers.find((match) => match(filename)));
137
};
138
139
/** Inject typescript docgen information into modules at the end of a build */
0 commit comments