We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae3ca7a commit 4c7138bCopy full SHA for 4c7138b
src/generators/jsdocs.ts
@@ -14,7 +14,13 @@ export const jsdocs = defineGenerator({
14
const { loadSchema } = await import("untyped/loader");
15
const fullPath = resolvePath(args.src, { url, dir: config.dir });
16
17
- const schema = await loadSchema(fullPath);
+ const schema = await loadSchema(fullPath, {
18
+ jiti: {
19
+ // TODO: untyped should be able to reuse same jiti instance to avoid race conditions
20
+ fsCache: false,
21
+ moduleCache: false,
22
+ },
23
+ });
24
25
return {
26
contents: _render(
0 commit comments