-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbabel.config.js
More file actions
39 lines (38 loc) · 791 Bytes
/
babel.config.js
File metadata and controls
39 lines (38 loc) · 791 Bytes
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
/**
* Babel
*
* @see https://gist.github.com/ncochard/6cce17272a069fdb4ac92569d85508f4
*/
module.exports = {
presets: ['@babel/preset-env', '@babel/preset-react'],
plugins: [
'@babel/plugin-transform-runtime',
'@babel/plugin-proposal-class-properties',
'babel-plugin-add-react-displayname'
],
env: {
test: {
presets: [['@babel/preset-env'], '@babel/preset-react'],
plugins: ['require-context-hook']
},
esm: {
presets: [
[
'@babel/preset-env',
{
modules: false
}
]
],
plugins: [
[
'@babel/plugin-transform-runtime',
{
useESModules: true
}
]
],
ignore: ['**/__tests__', '**/__mocks__']
}
}
}