-
Notifications
You must be signed in to change notification settings - Fork 6
/
.babelrc
38 lines (38 loc) · 996 Bytes
/
.babelrc
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
{
"env": {
"test": {
"presets": [
["@babel/preset-env", { "useBuiltIns": "usage", "corejs": 3, "bugfixes": true, "forceAllTransforms": true }],
["@babel/preset-react", { "useBuiltIns": true }],
"jest"
],
"plugins": [
"@babel/plugin-transform-modules-commonjs",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-syntax-dynamic-import"
],
"ignore": [
"/(node_modules|bower_components)/",
"**/build/**/*",
"**/public/**/*",
"**/webpack/**/*",
"**/.github/**/*",
"**/coverage/**/*",
".eslintrc",
".stylelintrc",
".prettierrc",
".browserslistrc",
".editorconfig",
"babel.babel.custom.config.js",
"vendors.js",
"postcss.config.js",
"webpack.config.js",
"package.json",
"package-lock.json",
"README.md",
"LICENSE.md",
".gitignore"
]
}
}
}