You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
digitransit-ui/babel.config.js

22 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',
],
};