_comuns/tsup/tsup.config.front.interno.ts
2025-10-27 09:19:29 -03:00

10 lines
335 B
TypeScript

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