10 lines
335 B
TypeScript
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)
|