-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
50 lines (49 loc) · 1.14 KB
/
rollup.config.js
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
import typescript from 'rollup-plugin-typescript2';
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import copy from 'rollup-plugin-copy'
import {terser} from 'rollup-plugin-terser';
import replace from 'rollup-plugin-replace';
import sass from 'rollup-plugin-sass';
import react from 'react';
import reactDom from 'react-dom';
export default {
input: 'src/index.ts',
watch: {
include: 'src/**'
},
output: {
dir: 'dist',
format: 'iife',
globals: {
'object-assign': 'Object.assign'
}
},
plugins: [
copy({
targets: [
{ src: 'src/manifest.json', dest: 'dist'},
{ src: 'src/app.html', dest: 'dist'},
{ src: 'src/resources', dest: 'dist'}
]
}),
replace({
'process.env.NODE_ENV': JSON.stringify('production')
}),
terser(),
resolve({
extensions: ['js', 'ts', 'tsx'],
}),
commonjs({
include: 'node_modules/**',
namedExports: {
react: Object.keys(react),
'react-dom': Object.keys(reactDom),
}
}),
typescript(),
sass({
output: 'dist/bundle.css',
})
],
}