-
Notifications
You must be signed in to change notification settings - Fork 18
/
rollup.config.js
52 lines (50 loc) · 1.02 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
import path from 'path';
import pkg from './package.json';
import babel from '@rollup/plugin-babel';
import typescript from '@rollup/plugin-typescript';
import { terser } from 'rollup-plugin-terser';
import dts from 'rollup-plugin-dts';
const config = [
// es module, using original typescript compiler
{
input: './src/godb.ts',
output: {
name: 'GoDB',
format: 'es',
file: path.resolve(pkg.main)
},
plugins: [
typescript()
]
},
// .d.ts
{
input: './src/godb.ts',
output: {
name: 'GoDB',
format: 'es',
file: path.resolve(pkg.typings)
},
plugins: [
dts()
]
},
// .min.js, using babel for browser compatibility
{
input: './src/godb.ts',
output: {
name: 'GoDB',
format: 'umd',
file: path.resolve(pkg.main.replace(/(.\w+)$/, '.min$1'))
},
plugins: [
typescript(),
babel({
exclude: 'node_modules/**',
babelHelpers: 'bundled'
}),
terser()
]
}
];
export default config;