initial-commit

This commit is contained in:
nicwands
2026-03-25 12:26:26 -04:00
commit 92cebfb4c3
10 changed files with 3835 additions and 0 deletions

15
rollup.config.js Normal file
View File

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