Skip to content
Snippets Groups Projects
babel.config.js 250 B
Newer Older
  • Learn to ignore specific revisions
  • Griefed's avatar
    Griefed committed
    module.exports = (api) => {
      return {
        presets: [
          [
            "@quasar/babel-preset-app",
            api.caller((caller) => caller && caller.target === "node")
              ? { targets: { node: "current" } }
              : {},
          ],
        ],
      };
    };