mirror of
https://github.com/VisActor/VChart
synced 2024-11-22 17:26:19 +00:00
19 lines
325 B
JavaScript
19 lines
325 B
JavaScript
/**
|
|
* @type {Partial<import('@internal/bundler').Config>}
|
|
*/
|
|
const json = require('@rollup/plugin-json');
|
|
|
|
module.exports = {
|
|
formats: ['cjs', 'es', 'umd'],
|
|
outputDir: {
|
|
es: 'esm',
|
|
cjs: 'cjs',
|
|
umd: 'build'
|
|
},
|
|
name: 'VMind',
|
|
umdOutputFilename: 'index',
|
|
rollupOptions: {
|
|
plugins: [json()]
|
|
},
|
|
};
|