-
Notifications
You must be signed in to change notification settings - Fork 2
/
rollup.config.ts
51 lines (48 loc) · 1.04 KB
/
rollup.config.ts
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
import commonjs from '@rollup/plugin-commonjs'
import nodeResolve from '@rollup/plugin-node-resolve'
import terser from '@rollup/plugin-terser'
import typescript from '@rollup/plugin-typescript'
const treeshake = {
moduleSideEffects : false,
propertyReadSideEffects : false,
tryCatchDeoptimization : false
}
const onwarn = (warning) => {
if (
warning.code === 'INVALID_ANNOTATION' &&
warning.message.includes('@__PURE__')
) {
return
}
throw new Error(warning)
}
export default {
input: 'src/index.ts',
onwarn,
output: [
{
file: 'dist/main.cjs',
format: 'cjs',
sourcemap: true,
},
{
file: 'dist/module.mjs',
format: 'es',
sourcemap: true,
minifyInternalExports: false
},
{
file: 'dist/browser.js',
format: 'iife',
name: 'buff',
plugins: [terser()],
sourcemap: true,
globals: {
crypto : 'crypto',
}
}
],
plugins: [ typescript(), nodeResolve(), commonjs() ],
strictDeprecations: true,
treeshake
}