mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-13 04:57:28 +00:00
22 lines
419 B
JavaScript
22 lines
419 B
JavaScript
import basicConfig from './rollup.config.mjs'
|
|
import excludeDependenciesFromBundle from "rollup-plugin-exclude-dependencies-from-bundle"
|
|
import terser from '@rollup/plugin-terser'
|
|
|
|
const config = {
|
|
...basicConfig,
|
|
output: [
|
|
{
|
|
file: 'dist/index.es.js',
|
|
format: 'es',
|
|
},
|
|
],
|
|
plugins: [
|
|
...basicConfig.plugins,
|
|
excludeDependenciesFromBundle(),
|
|
terser()
|
|
]
|
|
}
|
|
|
|
export default config
|
|
|