import ts from 'rollup-plugin-typescript2'; export default { input: 'src/index.ts', output: [ { file: 'dist/index.cjs', format: 'cjs', }, { file: 'dist/index.js', format: 'esm', }, ], external: ['crypto', 'fs', 'path'], plugins: [ ts(), ], };