mirror of
https://github.com/HSLdevcom/digitransit-ui
synced 2025-07-04 23:30:37 +02:00
21 lines
398 B
JavaScript
21 lines
398 B
JavaScript
module.exports = {
|
|
presets: [
|
|
[
|
|
'@babel/preset-env',
|
|
{
|
|
targets: {
|
|
node: 'current',
|
|
browsers: [],
|
|
},
|
|
},
|
|
],
|
|
'@babel/preset-react',
|
|
],
|
|
plugins: [
|
|
'dynamic-import-node',
|
|
'relay',
|
|
'@babel/plugin-syntax-dynamic-import',
|
|
'@babel/plugin-transform-class-properties',
|
|
'@babel/plugin-transform-json-strings',
|
|
],
|
|
};
|