-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.ts
44 lines (40 loc) · 1.02 KB
/
rollup.config.ts
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 { babel } from '@rollup/plugin-babel';
import { defineConfig, ModuleFormat } from 'rollup';
import { terser } from 'rollup-plugin-terser';
import ts from 'rollup-plugin-ts';
const isDev =
process.env['NODE_ENV'] === 'development' ||
process.env['ROLLUP_WATCH'] === 'true';
const formats: ModuleFormat[] = ['esm', 'system'];
const formatToExtension = (format: ModuleFormat) => {
switch (format) {
case 'cjs':
case 'commonjs':
return 'cjs';
case 'es':
case 'esm':
case 'module':
return 'mjs';
default:
return 'js';
}
};
const config = defineConfig({
input: 'src/index.ts',
external: [/@codecb\//, /^react\/?/, /^react-dom\/?/],
output: formats.map(format => ({
dir: `dist/${format}`,
entryFileNames: `[name].${formatToExtension(format)}`,
format,
sourcemap: isDev,
})),
plugins: [
ts(),
babel({
babelHelpers: 'bundled',
presets: [['@codecb/babel', { target: 'browser' }]],
}),
!isDev && terser(),
],
});
export default config;