forked from elastic/eui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.babelrc.js
58 lines (57 loc) · 1.68 KB
/
.babelrc.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
55
56
57
58
module.exports = {
// We need to preserve comments as they are used by webpack for
// naming chunks during code-splitting. The compression step during
// bundling will remove them later.
"comments": true,
"presets": [
["@babel/env", {
// `targets` property set via `.browserslistrc`
"useBuiltIns": process.env.NO_COREJS_POLYFILL ? false : "usage",
"corejs": !process.env.NO_COREJS_POLYFILL ? '3.6' : undefined,
"modules": process.env.BABEL_MODULES ? process.env.BABEL_MODULES === 'false' ? false : process.env.BABEL_MODULES : "commonjs" // babel's default is commonjs
}],
["@babel/typescript", { isTSX: true, allExtensions: true }],
"@babel/react",
[
"@emotion/babel-preset-css-prop",
{
"autoLabel": "always",
"labelFormat": "[local]",
"sourceMap": false,
},
],
],
"plugins": [
"@babel/plugin-syntax-dynamic-import",
`${__dirname}/scripts/babel/proptypes-from-ts-props`,
"add-module-exports",
// stage 3
"@babel/proposal-object-rest-spread",
// stage 2
"@babel/proposal-class-properties",
[
"inline-react-svg",
{
"ignorePattern": "images/*",
"svgo": {
"plugins": [
{ "cleanupIDs": false },
{ "removeViewBox": false }
]
}
}
],
],
// Used for Cypress code coverage - note that the env has to be Cypress-specific, otherwise Jest --coverage throws errors
"env": {
"cypress_test": {
"plugins": ["istanbul"]
}
},
"overrides": [
{
"include": `${__dirname}/src/components/search_bar/query/default_syntax.ts`,
"plugins": ["pegjs-inline-precompile"],
}
]
};