mirror of
https://github.com/duhanbalci/iyzico.git
synced 2026-03-03 12:29:16 +00:00
15 lines
249 B
TypeScript
15 lines
249 B
TypeScript
import { defineConfig } from 'tsdown';
|
|
|
|
export default defineConfig({
|
|
entry: ['src/index.ts'],
|
|
format: ['esm', 'cjs'],
|
|
dts: true,
|
|
sourcemap: true,
|
|
clean: true,
|
|
treeshake: true,
|
|
minify: false,
|
|
target: 'es2022',
|
|
outDir: 'dist',
|
|
});
|
|
|