12 lines
198 B
TypeScript
12 lines
198 B
TypeScript
import { defineConfig } from "tsdown";
|
|
|
|
export default defineConfig({
|
|
entry: ["./src/index.ts"],
|
|
dts: true,
|
|
exports: true,
|
|
target: "ESNext",
|
|
deps: {
|
|
neverBundle: ["bun", "bun:test"],
|
|
},
|
|
});
|