-
-
Notifications
You must be signed in to change notification settings - Fork 193
/
rollup.config.js
37 lines (32 loc) · 881 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
35
36
37
import packageJson from './packages/embla-carousel/package.json'
import localTypescript from 'typescript'
import babel from '@rollup/plugin-babel'
import typescript from 'rollup-plugin-typescript2'
import resolve from '@rollup/plugin-node-resolve'
import { terser } from 'rollup-plugin-terser'
const kebabToPascalCase = (string = '') =>
string.replace(/(^\w|-\w)/g, (replaceString) =>
replaceString.replace(/-/, '').toUpperCase(),
)
const CONFIG_GLOBALS = {
[packageJson.name]: kebabToPascalCase(packageJson.name),
}
const CONFIG_BABEL = {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
exclude: 'node_modules/**',
babelHelpers: 'bundled',
}
const CONFIG_TYPESCRIPT = {
tsconfig: 'tsconfig.json',
typescript: localTypescript,
}
export {
CONFIG_BABEL,
CONFIG_TYPESCRIPT,
CONFIG_GLOBALS,
babel,
typescript,
resolve,
terser,
kebabToPascalCase,
}