-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.js
42 lines (40 loc) · 1.02 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
import alias from "@rollup/plugin-alias";
import commonjs from "@rollup/plugin-commonjs";
import image from "@rollup/plugin-image";
import json from "@rollup/plugin-json";
import replace from "@rollup/plugin-replace";
import resolve from "@rollup/plugin-node-resolve";
import scss from 'rollup-plugin-scss';
import typescript from "@rollup/plugin-typescript";
const plugins = [
replace({
preventAssignment: true,
"process.env.NODE_ENV": process.env.NODE_ENV === "production" ? JSON.stringify("production") : null,
}),
alias({
entries: [{ find: "inherits", replacement: "inherits/inherits_browser" }],
}),
resolve(),
commonjs({
include: "node_modules/**",
}),
typescript(),
image(),
json(),
scss({
insert: true
}),
];
export default [
{
onwarn: function(warning, superOnWarn) {
if (warning.code === 'THIS_IS_UNDEFINED') { return; }
superOnWarn(warning);
},
input: "src/process-statistics.tsx",
output: {
file: "process-statistics.js",
},
plugins,
},
];