9 lines
173 B
TypeScript
9 lines
173 B
TypeScript
import { defineConfig } from "tsdown";
|
|
|
|
export default defineConfig({
|
|
entry: ["src/index.ts"],
|
|
format: ["esm"],
|
|
dts: true,
|
|
platform: "neutral",
|
|
exports: true,
|
|
});
|