VTable/packages/vue-vtable/bundler.config.js
2024-09-24 16:23:57 +08:00

21 lines
421 B
JavaScript

/**
* @type {Partial<import('@internal/bundler').Config>}
*/
module.exports = {
formats: ['vue', 'umd'],
noEmitOnError: false,
copy: ['css'],
name: 'VueVTable',
umdOutputFilename: 'vue-vtable',
rollupOptions: {
treeshake: true
},
globals: {
'@visactor/vtable': 'VTable'
},
external: ['@visactor/vtable'],
alias: {
'@visactor/vtable/es/vrender': '@visactor/vtable/es/vrender.js'
}
};