mirror of
https://github.com/knex/knex.git
synced 2025-12-10 06:21:26 +00:00
11 lines
246 B
JavaScript
11 lines
246 B
JavaScript
/** @type {import("../../../").Config} */
|
|
const config = {
|
|
client: 'sqlite3',
|
|
connection: {
|
|
filename: './test.sqlite3',
|
|
},
|
|
useNullAsDefault: true,
|
|
};
|
|
/** Named export */
|
|
export const { client, connection, useNullAsDefault } = config;
|