initial-commit

This commit is contained in:
nicwands
2026-02-27 17:08:23 -05:00
commit 904d3ac8f0
8 changed files with 2093 additions and 0 deletions

13
rollup.config.js Normal file
View File

@@ -0,0 +1,13 @@
// rollup.config.js
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()],
}