diff --git a/rollup.config.js b/rollup.config.js index d4343b1..de0f81f 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -14,11 +14,11 @@ export default [ }, { input: './tmp/index.js', - externals: ['tslib'], + external: ['tslib'], output: [ { file: pkg.module, format: 'es' }, { file: pkg.main, format: 'cjs' }, ], - plugins: [filesize()], + plugins: [resolve(), filesize()], }, ]