forked from react-cropper/react-cropper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.dev.ts
41 lines (40 loc) · 1.1 KB
/
rollup.config.dev.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
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import typescript from 'rollup-plugin-typescript2';
import postcss from 'rollup-plugin-postcss';
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',
},
},
watch: {
include: ['src/**', 'example/**'],
exclude: ['example/assets/**'],
},
plugins: [
resolve({
browser: true,
}),
commonjs({
include: /node_modules/,
}),
babel(),
typescript({
useTsconfigDeclarationDir: true,
}),
postcss({
extract: path.resolve('example/assets/bundle.css'),
}),
replace({'process.env.NODE_ENV': JSON.stringify('development')}),
],
};