UNPKG

@vue-stripe/vue-stripe

Version:

Stripe Checkout & Elements for Vue.js

23 lines (20 loc) 388 B
module.exports = function (api) { api.cache(true); const presets = [ '@babel/preset-env', // 'minify' ]; const plugins = [ '@babel/transform-runtime', '@babel/plugin-proposal-export-default-from', '@babel/plugin-proposal-optional-chaining', ]; // const ignore = [ // '**/*.test.js', // ]; return { presets, plugins, // ignore }; };