mirror of
https://github.com/VisActor/VTable
synced 2024-11-22 18:57:38 +00:00
21 lines
421 B
JavaScript
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'
|
|
}
|
|
};
|