mirror of
https://github.com/SrIzan10/ts-lib-boilerplate.git
synced 2026-06-05 16:56:59 +00:00
10 lines
190 B
TypeScript
10 lines
190 B
TypeScript
import { defineConfig } from 'tsup'
|
|
|
|
export default defineConfig({
|
|
entry: ['./src/**/*.ts'],
|
|
splitting: false,
|
|
sourcemap: true,
|
|
format: ['cjs', 'esm'],
|
|
dts: true,
|
|
clean: true,
|
|
}) |