From d848b19f0c919d92b27ee7577f27ede66dbb0e78 Mon Sep 17 00:00:00 2001 From: Marco Pasqualetti Date: Wed, 8 Oct 2025 15:22:55 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20fix:=20remove=20`tsup`=20import?= =?UTF-8?q?=20from=20`openapi.ts`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/openapi.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/openapi.ts b/src/openapi.ts index d99e9c7..3e32f27 100644 --- a/src/openapi.ts +++ b/src/openapi.ts @@ -10,7 +10,6 @@ import type { ElysiaOpenAPIConfig, MapJsonSchema } from './types' -import { defineConfig } from 'tsup' export const capitalize = (word: string) => word.charAt(0).toUpperCase() + word.slice(1)