We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents abe4c74 + 976c81e commit 939be9dCopy full SHA for 939be9d
src/plugin.ts
@@ -153,7 +153,7 @@ function getTSConfigFile(tsconfigPath: string): ts.ParsedCommandLine {
153
154
/** Create a glob matching function. */
155
const matchGlob = (globs: string[]) => {
156
- const matchers = globs.map((g) => matcher(g));
+ const matchers = globs.map((g) => matcher(g, { dot: true }));
157
return (filename: string) =>
158
Boolean(filename && matchers.find((match) => match(filename)));
159
};
0 commit comments