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