mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 09:34:19 +08:00
10 lines
180 B
JavaScript
10 lines
180 B
JavaScript
import config from './rollup.config';
|
|
|
|
const newConfig = {
|
|
...config,
|
|
input: 'build/es5/core.js',
|
|
};
|
|
newConfig.output.file = 'dist/fesm5.js';
|
|
|
|
export { newConfig as default };
|