mirror of
https://github.com/501351981/vue-office.git
synced 2025-06-25 07:08:58 +08:00
17 lines
394 B
JavaScript
17 lines
394 B
JavaScript
import { babel } from '@rollup/plugin-babel';
|
|
export default {
|
|
input: 'index.js',
|
|
output:[
|
|
{
|
|
file: 'lib/index.js',
|
|
name: 'jsPreviewExcel',
|
|
format: 'es'
|
|
},
|
|
{
|
|
file: 'lib/index.umd.js',
|
|
name: 'jsPreviewExcel',
|
|
format: 'umd'
|
|
}
|
|
],
|
|
plugins: [babel({ babelHelpers: 'bundled' })]
|
|
}; |