mirror of
https://github.com/makeplane/plane.git
synced 2026-07-10 20:41:15 +02:00
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,
|
|
});
|