-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.dev.mjs
45 lines (44 loc) · 1.08 KB
/
rollup.config.dev.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
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import typescript from '@rollup/plugin-typescript';
import replace from '@rollup/plugin-replace'
import serve from 'rollup-plugin-serve';
import livereload from 'rollup-plugin-livereload';
import copy from 'rollup-plugin-copy';
import postcss from 'rollup-plugin-postcss';
export default {
input: 'example/index.tsx',
output: {
name: 'driverJsReactExample',
format: 'iife',
file: 'dist-example/bundle.js',
sourcemap: true,
globals: {
react: 'React',
}
},
plugins: [
resolve({
extensions: ['.js', '.ts', '.jsx', '.tsx'],
}),
commonjs(),
typescript(),
serve({
open: true,
contentBase: ['dist-example'],
host: 'localhost',
port: 4000,
}),
livereload({
watch: 'dist-example',
}),
copy({
targets: [{ src: 'public/index.html', dest: 'dist-example' }],
}),
replace({
preventAssignment: true,
'process.env.NODE_ENV': JSON.stringify('development'),
}),
postcss(),
]
}