-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
29 lines (27 loc) · 988 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
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
// import typescript from 'rollup-plugin-typescript';
import { terser } from 'rollup-plugin-terser';
// `npm run build` -> `production` is true
// `npm run dev` -> `production` is false
const production = !process.env.ROLLUP_WATCH;
export default {
input: 'src/index.js',
output: {
file: 'public/bundle-app.js',
// immediately-invoked function expression — suitable for <script> tags
format: 'iife',
sourcemap: true,
// variable value 'main' is exported into Browser
name: 'myapp',
// if 'named', then access from browser is based on value of name above.
// app.ExportedName
exports: 'named'
},
plugins: [
resolve(), // tells Rollup how to find commonjs in node_modules
// typescript({module: 'CommonJS'}),
commonjs({extensions: ['.js', '.ts']}), // converts commonjs to ES modules
production && terser() // minify, but only in production
]
};