We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2f3f89 commit 4b89289Copy full SHA for 4b89289
1 file changed
src/utils/fileMatchers.ts
@@ -6,6 +6,8 @@ export function isCodegenConfig(
6
filePath: string,
7
context: CodegenContext,
8
): boolean {
9
+ if (!context.filepath) return false;
10
+
11
return normalizePath(filePath) === normalizePath(context.filepath);
12
}
13
0 commit comments