-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
44 lines (42 loc) · 1.07 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
import clear from 'rollup-plugin-clear';
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import typescript from 'rollup-plugin-typescript2';
/**
* @param {'esm'|'cjs'} type
* @returns rollup config
*/
function config(type) {
return {
input: {
'index': './src/index.ts',
'include': './src/include.ts',
},
output: {
dir: type,
format: type,
entryFileNames: '[name].js',
exports: 'default',
},
plugins: [
clear({
targets: [type]
}),
resolve({
extensions: ['.js', '.cjs', '.mjs', '.ts']
}),
commonjs(),
typescript(),
],
external: [
'@babel/parser',
'@babel/types',
'@babel/traverse',
'@babel/generator',
'@babel/helper-module-imports',
'change-case',
'resolve'
],
}
}
export default [config('esm'), config('cjs')]