You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
254 B

4 years ago
  1. module.exports = function(api) {
  2. api.cache(true);
  3. const presets = [
  4. [
  5. "@babel/preset-env",
  6. {
  7. targets: "last 2 versions, >1%, not dead",
  8. },
  9. ],
  10. ];
  11. const plugins = [];
  12. return {
  13. presets,
  14. plugins,
  15. };
  16. };