mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-07-13 15:14:49 -06:00

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.
15 lines
242 B
TypeScript
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',
|
|
},
|
|
});
|