-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
71 lines (67 loc) · 1.42 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import nodeResolve from '@rollup/plugin-node-resolve'
import json from '@rollup/plugin-json'
import babel from '@rollup/plugin-babel'
import { terser } from 'rollup-plugin-terser'
import prettier from 'rollup-plugin-prettier'
const extensions = ['.mjs', '.js', '.json', '.node']
const external = [
'path',
'fs',
'util',
'crypto',
'module',
'tty',
'net',
'assert',
'url',
'constants',
'stream',
'eslint-plugin-unicorn',
'eslint-plugin-import',
'eslint-plugin-promise',
'eslint-plugin-node',
'eslint-plugin-standard',
'eslint-plugin-react-hooks',
'eslint-plugin-jest',
'@typescript-eslint/eslint-plugin',
'eslint-plugin-react',
'eslint-plugin-jsx-a11y',
]
const config = {
input: 'src/rules.js',
output: {
file: 'dist/rules.js',
format: 'cjs',
preferConst: true,
freeze: false,
exports: 'default',
},
treeshake: {
moduleSideEffects: false,
},
external,
plugins: [
nodeResolve({ extensions }),
json({ preferConst: true, compact: true }),
babel({ babelHelpers: 'bundled' }),
terser({
mangle: false,
compress: {
unsafe: true,
defaults: true,
toplevel: true,
hoist_props: true,
join_vars: false,
passes: 4,
booleans: false,
},
}),
prettier({
parser: 'babel',
singleQuote: true,
semi: false,
trailingComma: 'all',
}),
],
}
export default config