diff --git a/integrations/javascript/tsup.config.ts b/integrations/javascript/tsup.config.ts new file mode 100644 index 0000000..128b15a --- /dev/null +++ b/integrations/javascript/tsup.config.ts @@ -0,0 +1,12 @@ +import { defineConfig } from "tsup"; + +export default defineConfig({ + entry: ["./src/index.ts"], + format: ["cjs", "esm"], + dts: true, + splitting: false, + sourcemap: true, + clean: true, + minify: true, + external: ["node-fetch"] +}); \ No newline at end of file