UNPKG

smartsh

Version:

Cross-shell command runner enabling Unix-style syntax on any OS.

12 lines (10 loc) 246 B
import { defineConfig } from 'tsup' export default defineConfig({ entry: ['src/index.ts'], format: ['esm', 'cjs'], sourcemap: true, clean: true, dts: true, splitting: false, minify: process.env.NO_SWC ? false : true, })