mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-29 12:15:43 +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'
|
|
]
|
|
};
|