芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/consolidated-events/rollup.config.js
import babel from 'rollup-plugin-babel'; import pkg from './package.json'; export default { input: 'src/index.js', output: [ { file: pkg.main, format: 'cjs', }, { file: pkg.module, format: 'esm', }, ], plugins: [ babel({ babelrc: false, presets: [['airbnb', { modules: false }]], }), ], };