-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.babelrc.js
34 lines (29 loc) · 1.01 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
const CONFIG = {
presets: [
['@babel/preset-env', { targets: { node: 'current' } }],
'@babel/preset-react',
'@babel/preset-typescript',
],
plugins: ['@babel/plugin-proposal-object-rest-spread', '@babel/plugin-proposal-class-properties'],
};
const TEST_CONFIG = {
presets: [
['@babel/preset-env', { targets: { node: 'current' } }],
'@babel/preset-react',
'@babel/preset-typescript',
// 'jest',
],
plugins: [
'babel-plugin-dynamic-import-node', // only for tests, otherwise webpack handles
'@babel/plugin-transform-async-to-generator', // only for tests, because jest global.Promise doesn't match async function return type
'@babel/plugin-proposal-object-rest-spread',
'@babel/plugin-proposal-class-properties',
'babel-plugin-jest-hoist',
],
};
function generate(api) {
api && api.cache.never();
if (process.env.NODE_ENV === 'test') return TEST_CONFIG;
return CONFIG;
}
module.exports = generate();