UnlyEd/boilerplates-generator

View on GitHub
templates/typescript-OSS/babel.config.js

Summary

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