_comuns/tsup/tsup.config.ts
2026-02-08 20:30:35 -03:00

7 lines
328 B
TypeScript
Executable file

// tsup.config.ts (Configuração Ajustada para Back-end)
import { defineConfig } 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])