configuration-oxlint/cfg/tsdown.config.ts
2026-04-07 11:55:09 +02:00

19 lines
406 B
TypeScript

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