Make backup dir name config variable optional

This commit is contained in:
2026-03-02 14:56:47 +01:00
parent 98e51645d5
commit 8f50b200c8
8 changed files with 14 additions and 16 deletions
+1
View File
@@ -1,4 +1,5 @@
export declare const AppData: {
readonly ConfigFileName: "bun-sqlite.config.ts";
readonly MaxBackups: 10;
readonly DefaultBackupDirName: ".backups";
};
+1
View File
@@ -1,4 +1,5 @@
export const AppData = {
ConfigFileName: "bun-sqlite.config.ts",
MaxBackups: 10,
DefaultBackupDirName: ".backups",
};