-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
34 lines (31 loc) · 896 Bytes
/
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
import { terser } from 'rollup-plugin-terser';
import babel from '@rollup/plugin-babel';
import replace from '@rollup/plugin-replace';
import resolve from '@rollup/plugin-node-resolve';
import path from 'path';
import glob from 'glob';
const isProduction = () => process.env.NODE_ENV === 'production';
console.log(`Rollup building: ${isProduction() ? 'production' : 'development'}`);
export default [
{
output: {
dir: path.join('dist'),
format: 'esm',
},
input: [...glob.sync('./out-tsc/**/*.js')],
plugins: [
replace({
'process.env.NODE_ENV': isProduction() ? JSON.stringify('production') : JSON.stringify('development'),
}),
resolve(),
babel({ babelHelpers: 'bundled' }),
isProduction()
? terser({
output: {
comments: false,
},
})
: undefined,
],
},
];