-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathrollup.config.js
More file actions
108 lines (107 loc) · 2.17 KB
/
rollup.config.js
File metadata and controls
108 lines (107 loc) · 2.17 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
import replace from "@rollup/plugin-replace";
import terser from "@rollup/plugin-terser";
import typescript from "@rollup/plugin-typescript";
import prettier from "rollup-plugin-prettier";
export default [
{
input: "src/index.ts",
output: {
file: "dist/dev.js",
format: "esm"
},
plugins: [
replace({
__DEV__: "true",
__TEST__: "false",
preventAssignment: true
}),
typescript({
declaration: false,
outDir: "dist",
module: "esnext",
target: "esnext",
moduleResolution: "bundler",
verbatimModuleSyntax: true
}),
terser({
compress: false,
mangle: false
}),
prettier({
parser: "typescript"
})
]
},
{
input: "src/index.ts",
output: {
file: "dist/prod.js",
format: "esm"
},
plugins: [
replace({
__DEV__: "false",
__TEST__: "false",
preventAssignment: true
}),
typescript({
declaration: false,
outDir: "dist",
module: "esnext",
target: "esnext",
moduleResolution: "bundler",
verbatimModuleSyntax: true
}),
terser({
compress: false,
mangle: {
keep_classnames: true,
keep_fnames: true,
module: false,
properties: {
regex: /^_/
}
}
}),
prettier({
parser: "typescript"
})
]
},
{
input: "src/index.ts",
output: {
file: "dist/node.cjs",
format: "cjs"
},
plugins: [
replace({
__DEV__: "false",
__TEST__: "false",
preventAssignment: true
}),
typescript({
declaration: false,
outDir: "dist",
module: "NodeNext",
target: "esnext",
moduleResolution: "NodeNext",
verbatimModuleSyntax: true
}),
terser({
compress: false,
mangle: {
keep_classnames: true,
keep_fnames: true,
module: false,
properties: {
regex: /^_/
}
}
}),
prettier({
parser: "typescript"
})
]
}
];