mirror of
https://github.com/Afilmory/afilmory
synced 2026-02-01 22:48:17 +00:00
10 lines
164 B
TypeScript
10 lines
164 B
TypeScript
import { defineConfig } from 'tsdown'
|
|
|
|
export default defineConfig({
|
|
entry: './src/index.ts',
|
|
outDir: './dist',
|
|
format: 'esm',
|
|
clean: true,
|
|
dts: true,
|
|
})
|