orimização e testes de build hibrido

This commit is contained in:
Luiz Silva 2025-07-18 13:36:46 -03:00
parent 17aee620b3
commit 40dca15bff
53 changed files with 2944 additions and 697 deletions

7
tsup/tsup.config.ts Normal file
View file

@ -0,0 +1,7 @@
// tsup.config.ts (Configuração Ajustada para Back-end)
import { defineConfig, type Options } from "tsup"
import { tsup_config_back } from "./tsup.config.back"
import { tsup_config_front } from "./tsup.config.front"
// Exporta a configuração padrão usando defineConfig
export default defineConfig([tsup_config_back, tsup_config_front])