import type { UserConfig } from "tsdown"; import { defineConfig } from "tsdown"; const config: UserConfig = defineConfig({ clean: true, dts: { oxc: true, parallel: true }, entry: ["../index.ts"], minify: false, outDir: "../dist", platform: "node", sourcemap: false, target: "esnext", treeshake: true, }); export default config;