summaryrefslogtreecommitdiff
path: root/themes/terminal/babel.config.js
blob: 64ddf6bf25563060de408d9a72dcff53519bd3be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module.exports = function(api) {
  api.cache(true);

  const presets = [
    [
      "@babel/preset-env",
      {
        targets: "last 2 versions, >1%, not dead",
      },
    ],
  ];
  const plugins = [];

  return {
    presets,
    plugins,
  };
};