SaenkoJr/backend-project-lvl3

View on GitHub
babel.config.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
  presets: [
    ['@babel/preset-env',
      {
        targets: {
          node: 'current',
        },
      },
    ],
  ],
  plugins: [
    [
      '@babel/plugin-proposal-pipeline-operator',
      {
        proposal: 'minimal',
      },
    ],
  ],
};