Created
February 8, 2020 18:13
-
-
Save ernestofreyreg/2f901be26165ee0afd6993d50ec8f19f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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