mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-01 20:46:08 +00:00
13 lines
252 B
TypeScript
13 lines
252 B
TypeScript
import { defineConfig } from 'tsup';
|
|
|
|
const isProduction = process.env.NODE_ENV === 'production';
|
|
|
|
export default defineConfig({
|
|
clean: true,
|
|
dts: true,
|
|
entry: ['src/index.ts'],
|
|
format: ['cjs', 'esm'],
|
|
minify: isProduction,
|
|
sourcemap: false,
|
|
});
|