From 49a8a352dfafc838564209315a7f3678c254f99e Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Sun, 1 Feb 2026 16:18:04 +0300 Subject: [PATCH] chore: bundle jitsi for config loading Signed-off-by: NotAShelf Change-Id: Iaf818970d17c911b80d3b5bc634a75896a6a6964 --- tsup.config.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tsup.config.ts diff --git a/tsup.config.ts b/tsup.config.ts new file mode 100644 index 0000000..3f202c0 --- /dev/null +++ b/tsup.config.ts @@ -0,0 +1,13 @@ +import { defineConfig } from 'tsup'; + +export default defineConfig({ + entry: ['src/index.ts'], + format: 'cjs', + dts: true, + clean: true, + // Bundle jiti into the output so it works without node_modules + noExternal: ['jiti'], + // Ensure all dependencies are resolved + platform: 'node', + target: 'node22', +});