From 4fa7e045f9b9f50c01b66e0efdb4be80c75ef340 Mon Sep 17 00:00:00 2001 From: Pablo Date: Mon, 13 May 2024 16:00:19 +0200 Subject: [PATCH] Fix build dist entry file --- tsup.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsup.config.ts b/tsup.config.ts index d048168..91e1c42 100644 --- a/tsup.config.ts +++ b/tsup.config.ts @@ -2,7 +2,7 @@ import { defineConfig } from 'tsup' export default defineConfig(options => ({ entryPoints: { - dist: './src/index.ts', + index: './src/index.ts', integration: './src/integration.ts', }, outDir: 'dist',