mirror of
https://github.com/makeplane/plane.git
synced 2025-12-16 20:07:56 +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",
|
|
});
|