(root: string, rel: string)
| 732 | * the co-located `<rel>.csv.base.json` so old vaults still read. |
| 733 | */ |
| 734 | export function databaseSidecarPath(root: string, rel: string): string { |
| 735 | const schemaRel = databaseSchemaPathFor(toPosix(rel)) |
| 736 | return resolveSafe(root, schemaRel ?? `${toPosix(rel)}${DATABASE_SIDECAR_SUFFIX}`) |
| 737 | } |
| 738 | |
| 739 | function cloneVaultSettings(settings: VaultSettings): VaultSettings { |
| 740 | return { |
no test coverage detected