-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
42 lines (37 loc) · 1.11 KB
/
rollup.config.js
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
34
35
36
37
38
39
40
41
42
import path from 'path';
import license from 'rollup-plugin-license';
import peerDepsExternal from 'rollup-plugin-peer-deps-external';
import typescript from 'rollup-plugin-typescript2';
import commonjs from '@rollup/plugin-commonjs';
import resolve from '@rollup/plugin-node-resolve';
// this override is needed because Module format cjs does not support top-level await
// eslint-disable-next-line @typescript-eslint/no-var-requires
const packageJson = require('./package.json');
const globals = { /* ...packageJson.devDependencies, */ };
export default {
external: Object.keys(globals),
input: 'src/index.ts',
output: [ {
file: packageJson.main,
format: 'cjs', // commonJS
sourcemap: false,
}, {
file: packageJson.module,
format: 'esm', // ES Modules
sourcemap: false,
} ],
plugins: [
peerDepsExternal(),
resolve(),
commonjs(),
typescript({ useTsconfigDeclarationDir: true }),
commonjs({
exclude: 'node_modules',
ignoreGlobal: true,
}),
license({
banner: { content: { file: path.join(__dirname, 'LICENSE') } },
sourcemap: true,
}),
],
};