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