mirror of
https://github.com/VisActor/VTable
synced 2024-11-22 10:03:28 +00:00
19 lines
325 B
JavaScript
19 lines
325 B
JavaScript
/**
|
|
* @type {Partial<import('@internal/bundler').Config>}
|
|
*/
|
|
|
|
const alias = require('@rollup/plugin-alias');
|
|
|
|
const path = require('path');
|
|
|
|
module.exports = {
|
|
formats: ['umd'],
|
|
// name: 'VTable',
|
|
|
|
umdOutputFilename: 'index',
|
|
minify: false,
|
|
output: {
|
|
footer: '/* follow me on Twitter! @rich_harris */'
|
|
}
|
|
};
|