configuration-oxlint/cfg/tsdown.config.ts
gcch c29dff40d8 2026-04-03
- eslint OK
- import OK
- jsdoc OK
- node OK
- oxc OK
- promise OK
2026-04-04 10:49:43 +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;