mirror of
https://github.com/VisActor/VTable
synced 2024-11-22 01:52:03 +00:00
14 lines
267 B
JavaScript
14 lines
267 B
JavaScript
/**
|
|
* @type {Partial<import('@internal/bundler').Config>}
|
|
*/
|
|
module.exports = {
|
|
formats: ['cjs', 'es', 'umd'],
|
|
noEmitOnError: false,
|
|
copy: ['css'],
|
|
name: 'VTable.editors',
|
|
umdOutputFilename: 'vtable-editors',
|
|
rollupOptions: {
|
|
treeshake: true
|
|
}
|
|
};
|