VTable/packages/vtable/bundler.config.js
2023-06-21 15:04:34 +08:00

20 lines
353 B
JavaScript

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