mq-flow
Version:
A lightweight, simple queue system designed for small tasks that need to be executed in a queued manner
12 lines (11 loc) • 573 B
text/typescript
import { defineConfig } from 'tsup';
export default defineConfig({
entry: ['src/index.ts'], // Your entry file
outDir: 'dist', // Output directory for the bundle
format: ['cjs', 'esm'], // Output formats: CommonJS and ESM
dts: true, // Generate TypeScript declaration files (.d.ts)
sourcemap: true, // Generate source maps
clean: true, // Clean the output directory before bundling
target: 'es2016', // Target ECMAScript version
minify: true, // Minify the output
});