forked from Uniswap/widgets
-
Notifications
You must be signed in to change notification settings - Fork 1
/
babel.config.js
32 lines (31 loc) · 952 Bytes
/
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
const isDevelopment =
process.env.NODE_ENV === 'test' || // jest
process.env.NODE_ENV === 'cosmos' // cosmos
module.exports = {
compact: false,
presets: [
'@babel/preset-env',
[
'@babel/preset-react',
{
development: isDevelopment,
// Ship with 'classic' runtime for compatibility with React >=17, otherwise ESM module resolution differs
// between versions (see https://github.com/facebook/react/issues/20235); develop with 'automatic' runtime for
// ease of development, so that React does not need to be top-level imported everywhere.
runtime: isDevelopment ? 'automatic' : 'classic',
},
],
['@babel/preset-typescript', { isTSX: true, allExtensions: true }],
],
plugins: [
'@babel/plugin-transform-runtime',
'macros',
[
'module-resolver',
{
root: ['src'],
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
],
],
}