-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbabel.config.js
32 lines (30 loc) · 957 Bytes
/
babel.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
/* eslint-disable sort-keys */
// inspired by
// - https://github.com/mui-org/material-ui/blob/b62015a61a4dfef72dfcb79cef917d701d50469f/babel.config.js
let defaultPresets
const environment = process.env.BABEL_ENV || 'umd'
// We release a ES version of the package.
// It's something that matches the latest official supported features of
// JavaScript. Nothing more (stage-1, etc), nothing less (require, etc).
if (environment === 'es') {
defaultPresets = []
} else {
defaultPresets = [
[
'@babel/preset-env',
{
// note: we do not build "esm" (compared with material-ui example)
modules: ['umd'].includes(environment) ? false : 'commonjs',
},
],
]
}
module.exports = {
comments: false,
presets: [...defaultPresets, '@babel/preset-react'],
plugins: [
'@babel/plugin-transform-modules-commonjs',
'@babel/plugin-proposal-class-properties',
'@babel/plugin-proposal-object-rest-spread',
],
}