Skip to content

Instantly share code, notes, and snippets.

@ernestofreyreg
Created February 8, 2020 18:13
Show Gist options
  • Save ernestofreyreg/2f901be26165ee0afd6993d50ec8f19f to your computer and use it in GitHub Desktop.
Save ernestofreyreg/2f901be26165ee0afd6993d50ec8f19f to your computer and use it in GitHub Desktop.
import typescript from 'rollup-plugin-typescript2'
import commonjs from 'rollup-plugin-commonjs'
import external from 'rollup-plugin-peer-deps-external'
import resolve from 'rollup-plugin-node-resolve'
import pkg from './package.json'
export default {
input: 'src/index.ts',
output: [
{
file: pkg.main,
format: 'es',
exports: 'named',
sourcemap: false
}
],
plugins: [
external(),
resolve(),
typescript({
rollupCommonJSResolveHack: true,
exclude: '**/__tests__/**',
clean: true
}),
commonjs({
include: ['node_modules/**']
})
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment