snapcube
Version:
📦 Snapshot, backup, and restore any project — binary-safe, fast, and simple CLI.
12 lines • 404 B
TypeScript
/**
* Directories that should always be ignored while scanning a project.
* These are typically build outputs, dependency folders, or VCS data.
*/
declare const IGNORE_DIRS: string[];
/**
* File extensions considered binary.
* These will be encoded in base64 if included in snapshots.
*/
declare const BINARY_EXTS: string[];
export { IGNORE_DIRS, BINARY_EXTS };
//# sourceMappingURL=config.d.ts.map