mirror of
https://github.com/samvallad33/vestige.git
synced 2026-05-10 08:12:37 +02:00
12 lines
214 B
TypeScript
12 lines
214 B
TypeScript
|
|
import { defineConfig } from 'tsup';
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
entry: ['src/index.ts', 'src/cli.ts'],
|
||
|
|
format: ['esm'],
|
||
|
|
dts: true,
|
||
|
|
clean: true,
|
||
|
|
sourcemap: true,
|
||
|
|
target: 'node20',
|
||
|
|
shims: true,
|
||
|
|
});
|