summary refs log tree commit diff stats
path: root/javascript/raindrops/babel.config.js
blob: 7940aa0065c978f9fd25fdd42e29c13b82c7bbbd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module.exports = {
  presets: [
    [
      '@babel/preset-env',
      {
        targets: {
          node: 'current',
        },
        useBuiltIns: 'entry',
        corejs: '3.14',
      },
    ],
  ],
  plugins: ['@babel/plugin-syntax-bigint'],
};