configuration-stylelint/tsdown.config.ts
2025-09-27 16:19:59 +02:00

12 lines
247 B
TypeScript

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