mirror of https://github.com/laurent22/joplin.git
10 lines
149 B
JavaScript
10 lines
149 B
JavaScript
|
import config from './rollup.config.mjs';
|
||
|
|
||
|
export default config({
|
||
|
output: {
|
||
|
file: 'lib/turndown.es.js',
|
||
|
format: 'es',
|
||
|
},
|
||
|
browser: false,
|
||
|
});
|