Type Alias GenIndexConfig
GenIndexConfig: DeepReadonly<
{
exclude?: | string[]
| (
(
args: Readonly<
{ absolutePath: string; fileName: string; relativePath: string },
>,
) => boolean
);
exportStatementExtension?: `.${string}` | "none";
formatCommand?: string;
indexFileExtension?: `.${string}`;
minDepth?: number;
silent?: boolean;
targetDirectory: string | string[];
targetExtensions?: `.${string}`[];
},
>
Configuration for index file generation.