mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-07 10:12:27 +03:00
12 lines
216 B
JavaScript
12 lines
216 B
JavaScript
const base = require('../../rollup.config.base');
|
|
|
|
const config = {
|
|
name: 'OverlayScrollbars',
|
|
exports: 'auto',
|
|
globals: {
|
|
jquery: 'jQuery',
|
|
},
|
|
};
|
|
|
|
module.exports = (_, ...args) => base(config, ...args);
|