mirror of
https://github.com/makeplane/plane.git
synced 2025-12-19 21:29:32 +01:00
8 lines
146 B
TypeScript
8 lines
146 B
TypeScript
|
|
import { defineConfig } from "tsdown";
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
entry: ["src/server.ts"],
|
||
|
|
outDir: "dist",
|
||
|
|
format: ["esm", "cjs"],
|
||
|
|
});
|