mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
10 lines
154 B
JavaScript
10 lines
154 B
JavaScript
|
import config from './rollup.config';
|
||
|
|
||
|
export default config({
|
||
|
output: {
|
||
|
file: 'lib/turndown.browser.cjs.js',
|
||
|
format: 'cjs',
|
||
|
},
|
||
|
browser: true,
|
||
|
});
|