mirror of
https://github.com/makeplane/plane.git
synced 2026-06-13 19:19:54 +00:00
97b4abd693
closes #8791
10 lines
173 B
TypeScript
10 lines
173 B
TypeScript
import { defineConfig } from "tsdown";
|
|
|
|
export default defineConfig({
|
|
entry: ["src/index.ts"],
|
|
format: ["esm"],
|
|
dts: true,
|
|
platform: "neutral",
|
|
exports: true,
|
|
});
|