Skip to content
Snippets Groups Projects
Select Git revision
  • c19854255aed9e959600258b5d96cd138badddbc
  • master default protected
  • maj-readme
  • update-budget-msg-2022
  • share-with-metadata
  • explications-resultats-macros-PLF2022
  • plf_fix
  • benoit-cty-master-patch-87290
  • activate-plf-2021
  • stats
  • switch-plf
  • carto
  • adapt-matomo
  • js-to-ts
  • nbre-part-logic
  • add-nbre-part
  • 1.0.0
17 results

babel.config.js

Blame
  • user avatar
    Loïc Poullain authored
    80a2c5c6
    History
    babel.config.js 262 B
    function babelConfig(api) {
      api.cache(true);
    
      const presets = [
        [
          "@babel/preset-env",
          {
            targets: {
              node: 8,
            },
          },
        ],
        ["next/babel"],
      ];
    
      return {
        presets,
      };
    }
    
    module.exports = babelConfig;