mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-01 11:33:41 +03:00
11 lines
322 B
JavaScript
11 lines
322 B
JavaScript
|
module.exports = {
|
||
|
presets: ['@babel/preset-env', '@babel/typescript', '@babel/preset-react'],
|
||
|
plugins: [
|
||
|
'@babel/transform-runtime',
|
||
|
'@babel/plugin-proposal-object-rest-spread',
|
||
|
'@babel/plugin-proposal-optional-chaining',
|
||
|
'@babel/plugin-proposal-class-properties',
|
||
|
'react-hot-loader/babel'
|
||
|
]
|
||
|
};
|