-
Notifications
You must be signed in to change notification settings - Fork 36
/
rollup.config.mjs
53 lines (51 loc) · 1.14 KB
/
rollup.config.mjs
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
43
44
45
46
47
48
49
50
51
52
53
import commonJS from '@rollup/plugin-commonjs';
import { nodeResolve } from '@rollup/plugin-node-resolve';
import typescript from '@rollup/plugin-typescript';
import packageJson from './package.json' with { type: 'json' };
import tsConfig from './tsconfig.json' with { type: 'json' };
import virtual from '@rollup/plugin-virtual';
import json from '@rollup/plugin-json';
const empty = 'export default {}';
const config = {
input: 'src/index.ts',
external: [
...Object.keys(packageJson.peerDependencies).filter((key) => key.startsWith('@iden3/')),
'snarkjs',
'ffjavascript'
],
output: {
format: 'es',
file: packageJson.exports['.'].browser,
sourcemap: true
},
context: 'window',
plugins: [
typescript({
compilerOptions: tsConfig.compilerOptions
}),
commonJS(),
nodeResolve({
browser: true
}),
json(),
virtual({
fs: empty
})
],
treeshake: {
preset: 'smallest'
}
};
export default [
config,
{
...config,
external: [],
output: {
...config.output,
format: 'iife',
file: packageJson.exports['.'].umd,
name: 'PolygonIdSdk'
}
}
];