Initial commit
CI / check (push) Successful in 56s

This commit is contained in:
rudder
2026-08-12 14:02:25 +03:00
commit 3ab2d4a6cf
85 changed files with 10257 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import { defineConfig } from 'tsup';
export default defineConfig({
entry: ['src/index.ts'],
format: ['esm', 'cjs'],
target: 'es2022',
dts: true,
clean: true,
// Code-split the lazily-imported scenario engine out of the initial chunk.
splitting: true,
treeshake: true,
platform: 'browser',
outDir: 'dist',
});