generated from shgysk8zer0/npm-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrollup.config.js
More file actions
44 lines (43 loc) · 789 Bytes
/
rollup.config.js
File metadata and controls
44 lines (43 loc) · 789 Bytes
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
import terser from '@rollup/plugin-terser';
import nodeResolve from '@rollup/plugin-node-resolve';
const plugins = [terser()];
export default [{
input: 'trusted-types.js',
output: [{
file: 'trusted-types.cjs',
format: 'cjs',
}, {
file: 'trusted-types.min.js',
format: 'iife',
plugins,
}]
}, {
input: 'harden.js',
output: [{
file: 'harden.cjs',
format: 'cjs',
}, {
file: 'harden.min.js',
format: 'iife',
plugins,
}]
}, {
input: 'bundle.js',
plugins: [nodeResolve()],
external: [
'@aegisjsproject/trusted-types/trusted-types.js',
'@aegisjsproject/trusted-types/harden.js',
],
output: {
file: 'bundle.cjs',
format: 'cjs',
}
}, {
input: 'bundle.js',
plugins: [nodeResolve()],
output: {
file: 'bundle.min.js',
format: 'iife',
plugins,
}
}];