diff --git a/packages/mdsvex/rollup.config.js b/packages/mdsvex/rollup.config.js index 0cc956de..83d952f5 100644 --- a/packages/mdsvex/rollup.config.js +++ b/packages/mdsvex/rollup.config.js @@ -57,28 +57,4 @@ export default [ }, ], }, - { - plugins: [ - replace({ - '(process ).browser': true, - '(process as RollupProcess).browser': true, - delimiters: ['', ''], - }), - resolve({ browser: true }), - commonjs({ namedExports: { 'svelte/compiler': ['parse'] } }), - json(), - sucrase({ transforms: ['typescript'] }), - globals(), - builtins(), - ], - input: 'src/main.ts', - output: [ - { - file: 'dist/browser-es.js', - name: 'mdsvex', - format: 'es', - sourcemap: false, - }, - ], - }, ];