11 lines
259 B
TypeScript
11 lines
259 B
TypeScript
import type { BunSQLiteConfig } from "@moduletrace/bun-sqlite/dist/types";
|
|
|
|
const config: BunSQLiteConfig = {
|
|
db_name: "wgui",
|
|
db_dir: "./db",
|
|
typedef_file_path: "./db/types/db.ts",
|
|
db_schema_file_name: "schema.ts",
|
|
};
|
|
|
|
export default config;
|