UNPKG

vibe-tools

Version:
25 lines (24 loc) 914 B
import type { RepomixConfig, pack } from 'repomix'; type RepomixConfigMerged = Parameters<typeof pack>[1]; export declare const ignorePatterns: string[]; export declare const includePatterns: string[]; export declare const outputOptions: { readonly git: { readonly sortByChanges: true; readonly sortByChangesMaxCommits: 10; }; readonly compress: false; readonly style: "xml"; readonly files: true; readonly fileSummary: true; readonly directoryStructure: true; readonly removeComments: false; readonly removeEmptyLines: true; readonly topFilesLength: 20; readonly showLineNumbers: false; readonly copyToClipboard: false; readonly includeEmptyDirectories: true; readonly parsableStyle: false; }; export declare const loadFileConfigWithOverrides: (rootDir: string, overrides: Partial<RepomixConfig>) => Promise<RepomixConfigMerged>; export {};