12 lines
200 B
JavaScript
12 lines
200 B
JavaScript
![]() |
import baseConfig from './config.base.js';
|
||
|
import pkg from './packageJson.js';
|
||
|
|
||
|
export default {
|
||
|
...baseConfig,
|
||
|
output: {
|
||
|
...baseConfig.output,
|
||
|
file: pkg.module,
|
||
|
format: 'es',
|
||
|
},
|
||
|
};
|