-
Notifications
You must be signed in to change notification settings - Fork 20
/
rollup.config.js
54 lines (52 loc) · 1.33 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
51
52
53
54
import resolve from "@rollup/plugin-node-resolve"
import commonjs from "@rollup/plugin-commonjs"
import babel, { getBabelOutputPlugin } from "@rollup/plugin-babel"
import terser from "@rollup/plugin-terser"
import typescript from "@rollup/plugin-typescript"
import postcss from "rollup-plugin-postcss"
import jsx from "acorn-jsx"
import json from "@rollup/plugin-json"
import cleanup from "rollup-plugin-cleanup"
import clear from "rollup-plugin-clear"
const config = {
input: "src/customComponents/renderer.ts",
output: {
dir: "comp-sdk",
format: "es",
globals: {
react: "React",
},
plugins: [
getBabelOutputPlugin({
presets: ["@babel/preset-react"],
}),
],
},
acornInjectPlugins: [jsx()],
plugins: [
clear({
targets: ["./comp-sdk/"],
}),
resolve(),
commonjs(),
babel({
presets: [
[
"@babel/preset-react",
{
development: false,
},
],
],
babelHelpers: "bundled",
}),
typescript({
jsx: "preserve",
}),
json(),
postcss(),
terser(),
cleanup(),
],
}
export default config