17 lines
375 B
TypeScript
17 lines
375 B
TypeScript
import { defineConfig } from "tsdown";
|
|
|
|
export default defineConfig({
|
|
clean: true,
|
|
deps: {
|
|
neverBundle: ["eslint-plugin-astro", "eslint-plugin-jsx-a11y"],
|
|
},
|
|
dts: { oxc: true, parallel: true },
|
|
entry: ["../index.ts"],
|
|
minify: false,
|
|
nodeProtocol: true,
|
|
outDir: "../dist",
|
|
platform: "node",
|
|
sourcemap: false,
|
|
target: "esnext",
|
|
treeshake: true,
|
|
});
|