mirror of
https://github.com/VisActor/VTable
synced 2024-11-22 01:52:03 +00:00
20 lines
353 B
JavaScript
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'
|
|
]
|
|
};
|