evolution-api/tsup.config.ts
Davidson Gomes 60eb923f64 chore: Update tsup configuration
Modified: tsup.config.ts

This commit updates the tsup configuration file. The changes made aim to improve the project's build process and optimize the bundle size. No new functionality or bug fixes are introduced in this commit.
2024-08-15 14:00:24 -03:00

15 lines
242 B
TypeScript

import { defineConfig } from 'tsup';
export default defineConfig({
entry: ['src'],
outDir: 'dist',
splitting: false,
sourcemap: true,
clean: true,
minify: true,
format: ['cjs', 'esm'],
loader: {
'.json': 'file',
},
});