UNPKG

fixer-api

Version:

fixer.io API client in TypeScript

26 lines (18 loc) 465 B
import commonjs from '@rollup/plugin-commonjs'; import resolve from '@rollup/plugin-node-resolve'; import pkg from './package.json' with { type: 'json' }; const extensions = ['.js', '.jsx', '.ts', '.tsx']; const name = 'fixerApi'; export default { input: './dist/index.browser.js', external: [], plugins: [resolve({ extensions }), commonjs()], output: [ { file: pkg.browser, format: 'iife', name, globals: {} } ] };