UNPKG

@transferwise/sensible

Version:
25 lines (24 loc) 445 B
import babel from '@rollup/plugin-babel'; import dts from 'rollup-plugin-dts'; export default [ { input: "src/index.js", output: { file: "dist/cjs/index.js", format: "cjs", }, plugins: [ babel(), ], }, { input: "src/index.js", output: { file: "dist/cjs/index.d.ts", format: "es", }, plugins: [ dts({compilerOptions: { allowJs: true, checkJs: true }}), ], }, ];