mirror of
https://github.com/knex/knex.git
synced 2025-12-10 06:21:26 +00:00
16 lines
330 B
JavaScript
16 lines
330 B
JavaScript
import config from '../knexfile-esm/knexfile.cjs';
|
|
/**
|
|
* Static 'cjs' import from js ESM with --esm interop
|
|
* @returns {import("../../../").Config}
|
|
* NOTE: this is NOT supported by NODE
|
|
* */
|
|
export default {
|
|
...config,
|
|
migrations: {
|
|
directory: './esm/migrations',
|
|
},
|
|
seeds: {
|
|
directory: './esm/seeds',
|
|
},
|
|
};
|