mirror of
https://github.com/knex/knex.git
synced 2026-01-06 12:07:07 +00:00
19 lines
402 B
JavaScript
19 lines
402 B
JavaScript
/**
|
|
* CASE: 'Unexpected token 'export'
|
|
* can't import ../knexfile-esm-package/knexfile.js as ESM Module
|
|
* because package.json is not type 'module'
|
|
*/
|
|
import config from '../knexfile-esm-package/knexfile.js';
|
|
/** */
|
|
export default {
|
|
...config,
|
|
migrations: {
|
|
...config.migrations,
|
|
directory: './mjs/migrations',
|
|
},
|
|
seeds: {
|
|
...config.seeds,
|
|
directory: './mjs/seeds',
|
|
},
|
|
};
|