fix exports

This commit is contained in:
nicwands
2026-02-24 13:45:09 -05:00
parent fe12109209
commit 8da3d5d8af
3 changed files with 1628 additions and 927 deletions

12
rollup.config.js Normal file
View File

@@ -0,0 +1,12 @@
import resolve from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
export default {
input: 'src/index.js',
output: {
file: 'dist/index.js',
format: 'esm',
sourcemap: true,
},
plugins: [resolve(), commonjs()],
}