-
-
Notifications
You must be signed in to change notification settings - Fork 83
/
rollup.config.ts
57 lines (55 loc) · 1.55 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
45
46
47
48
49
50
51
52
53
54
55
56
57
import resolve from 'rollup-plugin-node-resolve'
import commonjs from 'rollup-plugin-commonjs'
import typescript from 'rollup-plugin-typescript2'
// import json from 'rollup-plugin-json' // shouldn't need this. Was first in plugins
import { terser } from 'rollup-plugin-terser'
// import { sizeSnapshot } from 'rollup-plugin-size-snapshot' // possibly add this
// TODO: Someday don't transpile ES6 module dist files to ES5, ex. removing classes
const pkg = require('./package.json')
export default [
{
input: 'src/browser.ts', // todo: use rollup-plugin-replace
output: [
{
file: 'dist/browser/squirrelly.dev.js',
format: 'umd',
name: 'Sqrl',
sourcemap: true
},
{
file: pkg.browser,
format: 'umd',
name: 'Sqrl',
sourcemap: true,
plugins: [terser()]
}
],
plugins: [typescript({ useTsconfigDeclarationDir: true }), commonjs(), resolve()],
// Indicate here external modules you don't wanna include in your bundle (i.e.: 'lodash')
external: [],
watch: {
include: 'src/**'
}
},
{
input: 'src/index.ts',
output: [
{
file: pkg.main,
format: 'cjs',
sourcemap: true
},
{
file: pkg.module,
format: 'es',
sourcemap: true
}
],
plugins: [typescript({ useTsconfigDeclarationDir: true }), commonjs(), resolve()],
// Indicate here external modules you don't wanna include in your bundle (i.e.: 'lodash')
external: [],
watch: {
include: 'src/**'
}
}
]