Skip to content
Snippets Groups Projects
Select Git revision
  • df476b179d860edf5c1581f0bbff52f489c211b4
  • main default protected
2 results

WikiAbstract-SolarSystem-04.stog.amr.penman

Blame
  • babel.config.js 399 B
    module.exports = {
      plugins: [
        // TODO loose: which options is ignored in depencies ?
        ['@babel/plugin-proposal-private-methods', { loose: true }],
        ['@babel/plugin-proposal-private-property-in-object', { loose: true }],
      ],
      presets: [
        [
          '@babel/preset-env',
          {
            targets: {
              node: 'current',
            },
          },
        ],
        '@babel/preset-react',
      ],
    };