forked from mui/mui-x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
babel.config.js
54 lines (51 loc) · 1.58 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
let defaultPresets;
// We release a ES version of Material-UI.
// It's something that matches the latest official supported features of JavaScript.
// Nothing more (stage-1, etc), nothing less (require, etc).
if (process.env.BABEL_ENV === 'es') {
defaultPresets = [];
} else {
defaultPresets = [
[
'@babel/preset-env',
{
bugfixes: true,
modules: ['esm', 'production-umd'].includes(process.env.BABEL_ENV) ? false : 'commonjs',
},
],
];
}
const defaultAlias = {
'@material-ui/data-grid': './packages/grid/data-grid/src',
'@material-ui/x-grid-data-generator': './packages/grid/x-grid-data-generator/src',
'@material-ui/x-grid': './packages/grid/x-grid/src',
'@material-ui/x-license': './packages/x-license/src',
};
module.exports = {
presets: defaultPresets.concat(['@babel/preset-react', '@babel/preset-typescript']),
plugins: [
'babel-plugin-optimize-clsx',
['@babel/plugin-proposal-class-properties', { loose: true }],
['@babel/plugin-proposal-object-rest-spread', { loose: true }],
// any package needs to declare 7.4.4 as a runtime dependency. default is ^7.0.0
['@babel/plugin-transform-runtime', { version: '^7.4.4' }],
// for IE 11 support
'@babel/plugin-transform-object-assign',
'babel-plugin-istanbul',
[
'babel-plugin-module-resolver',
{
root: ['./'],
extensions: ['.js', '.ts', '.tsx'],
alias: defaultAlias,
},
],
],
ignore: [/@babel[\\|/]runtime/], // Fix a Windows issue.
env: {
coverage: {},
test: {
sourceMaps: 'both',
},
},
};