mirror of
https://github.com/makeplane/plane.git
synced 2026-02-24 12:11:39 +01:00
9 lines
156 B
TypeScript
9 lines
156 B
TypeScript
import { defineConfig } from "tsdown";
|
|
|
|
export default defineConfig({
|
|
entry: ["src/index.ts"],
|
|
format: ["esm"],
|
|
dts: true,
|
|
platform: "neutral",
|
|
});
|