mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-05-26 13:04:07 +03:00
22 lines
489 B
JavaScript
22 lines
489 B
JavaScript
import resolve from '@rollup/plugin-node-resolve';
|
|
|
|
const jsFilesDir = './dist/src'
|
|
|
|
module.exports = {
|
|
input: `${jsFilesDir}/index.js`,
|
|
output: {
|
|
name: 'OverlayScrollbars',
|
|
file: 'index.bundle.js',
|
|
format: 'umd',
|
|
exports: 'named',
|
|
sourcemap: true,
|
|
strict: true
|
|
},
|
|
plugins: [
|
|
resolve({
|
|
customResolveOptions: {
|
|
moduleDirectory: [jsFilesDir, 'node_modules']
|
|
}
|
|
})
|
|
]
|
|
}; |