Update schema and config file types. Allow js, ts, json, yaml, yml
This commit is contained in:
@@ -1,11 +1,13 @@
|
||||
export const AppData = {
|
||||
ConfigFileName: "bun-mariadb.config.ts",
|
||||
ConfigFileName: "bun-mariadb.config",
|
||||
MaxBackups: 10,
|
||||
MaxExports: 10,
|
||||
DefaultBackupDirName: ".backups",
|
||||
DefaultExportDirName: ".exports",
|
||||
DbSchemaManagerTableName: "__db_schema_manager__",
|
||||
DbSchemaFileName: "schema.ts",
|
||||
DbSchemaFileName: "schema",
|
||||
/** Priority order when resolving config/schema files */
|
||||
SupportedDataFileExtensions: [".ts", ".js", ".json", ".yaml", ".yml"] as const,
|
||||
MaxInitRetries: 50,
|
||||
InitRetryIntervalMilliseconds: 5000,
|
||||
} as const;
|
||||
|
||||
Reference in New Issue
Block a user