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