mirror of
https://github.com/gosticks/plane.git
synced 2025-10-16 12:45:33 +00:00
8 lines
145 B
TypeScript
8 lines
145 B
TypeScript
import { defineConfig } from "tsdown";
|
|
|
|
export default defineConfig({
|
|
entry: ["src/start.ts"],
|
|
outDir: "dist",
|
|
format: ["esm", "cjs"],
|
|
});
|