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