summary refs log tree commit diff stats
path: root/javascript/square-root/babel.config.js
blob: 5cec97251ae175a029a7a0a8d90e2705b57b163f (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,
      },
    ],
  ],
  plugins: ['@babel/plugin-syntax-bigint'],
};