babel.config.js 134 B

1234567
  1. module.exports = {
  2. presets: [
  3. ['@babel/env', { targets: { node: 'current' } }],
  4. '@babel/typescript',
  5. ],
  6. plugins: [],
  7. };