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