summaryrefslogtreecommitdiff
path: root/babel.config.js
blob: 7edca4fd9b7593ce53bb6b7a5507570f6e4e4e82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module.exports = {
  presets: [
    [
      '@babel/preset-env',
      {
        targets: {
          node: 'current'
        }
      }
    ],
    '@babel/preset-react'
  ]
}