Files
svg-sprites/tsup.config.ts
T

14 lines
220 B
TypeScript
Raw Normal View History

import { defineConfig } from 'tsup'
export default defineConfig({
entry: {
index: 'src/index.ts',
cli: 'src/cli.ts',
},
format: 'esm',
dts: true,
clean: true,
sourcemap: true,
target: 'node18',
})