-
Notifications
You must be signed in to change notification settings - Fork 1
/
rollup.config.prod.mjs
37 lines (36 loc) · 986 Bytes
/
rollup.config.prod.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
import jsx from 'acorn-jsx'
import typescript from '@rollup/plugin-typescript'
import resolve from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
import css from 'rollup-plugin-import-css'
import replace from '@rollup/plugin-replace'
import babel from '@rollup/plugin-babel'
import path from 'path'
export default {
input: `example/src/index.tsx`,
output: {
file: 'example/assets/bundle.js',
format: 'iife',
sourcemap: true,
globals: {
react: 'React',
cropperjs: 'cropperjs',
'react-dom': 'ReactDOM',
},
},
acornInjectPlugins: [jsx()],
plugins: [
replace({'process.env.NODE_ENV': JSON.stringify('production'), preventAssignment: true}),
css({
output: path.resolve('example/assets/bundle.css'),
}),
resolve({
browser: true,
}),
commonjs({
include: /node_modules/,
}),
babel({babelHelpers: 'bundled'}),
typescript({tsconfig: 'tsconfig.dev.json'}),
],
}