mirror of
https://github.com/knex/knex.git
synced 2025-11-30 08:56:27 +00:00
14 lines
244 B
JavaScript
14 lines
244 B
JavaScript
import config from '../knexfile-esm/knexfile.default.js';
|
|
/**
|
|
* @returns {import("../../../").Config}
|
|
* */
|
|
export default {
|
|
...config,
|
|
migrations: {
|
|
directory: './esm/migrations',
|
|
},
|
|
seeds: {
|
|
directory: './esm/seeds',
|
|
},
|
|
};
|