-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
rollup.config.js
40 lines (39 loc) · 915 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
38
39
40
// Rollup plugins
import babel from 'rollup-plugin-babel';
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import string from 'rollup-plugin-string';
export default {
entry: 'src/main.js',
acorn: {
allowReserved: true
},
dest: 'dist/all-around-keyboard.js',
format: 'iife',
moduleName: "window",
// sourceMap: 'inline',
plugins: [
string({include: '**/*.css'}),
resolve({
jsnext: true,
main: true,
browser: true,
preferBuiltins: true // Default: true
}),
commonjs({
exclude: 'node_modules/skatejs/**'
}),
babel({
presets: [
["env", {modules: false}],
// ["es2016"]
],
plugins: [
'transform-class-properties',
'transform-es2015-destructuring',
'external-helpers',
],
exclude: 'node_modules/babel-runtime/**',
}),
],
};