-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrollup.config.js
More file actions
33 lines (31 loc) · 904 Bytes
/
rollup.config.js
File metadata and controls
33 lines (31 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import commonjs from '@rollup/plugin-commonjs';
import resolve from '@rollup/plugin-node-resolve';
import typescript2 from 'rollup-plugin-typescript2';
import analyze from 'rollup-plugin-analyzer';
import pkg from './package.json';
import { builtinModules } from 'module';
const generalConfig = (moduleSystem) => ({
input: 'src/index.ts',
output: {
dir: `dist/${moduleSystem}`,
format: `${moduleSystem}`,
sourcemap: false,
exports: 'named',
},
external: [
...Object.keys(pkg.dependencies),
...Object.keys(pkg.peerDependencies),
...Object.keys(pkg.optionalDependencies),
...builtinModules,
],
plugins: [
commonjs(),
resolve(),
typescript2({
tsconfig: `tsconfig.es.json`,
typescript: require('ttypescript'),
}),
...(moduleSystem === 'es' ? [analyze()] : []),
],
});
export default [generalConfig('cjs'), generalConfig('es')];