You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
527 B
24 lines
527 B
import pkg from './package.json';
|
|
import postcss from 'rollup-plugin-postcss';
|
|
import commonjs from '@rollup/plugin-commonjs';
|
|
import typescript from 'rollup-plugin-typescript';
|
|
import rollupBaseConfig from '../../rollup.config';
|
|
|
|
export default Object.assign(rollupBaseConfig, {
|
|
plugins: [
|
|
postcss(),
|
|
typescript(),
|
|
commonjs()
|
|
],
|
|
output: [
|
|
{
|
|
file: pkg.main,
|
|
format: 'cjs',
|
|
},
|
|
{
|
|
file: pkg.module,
|
|
format: 'es',
|
|
},
|
|
],
|
|
external: Object.keys(pkg.peerDependencies),
|
|
});
|
|
|