mirror of
https://github.com/makeplane/plane.git
synced 2025-12-24 23:59:40 +01:00
12 lines
204 B
TypeScript
12 lines
204 B
TypeScript
import { defineConfig } from "tsdown";
|
|
|
|
export default defineConfig({
|
|
entry: ["src/start.ts"],
|
|
outDir: "dist",
|
|
format: ["esm"],
|
|
dts: false,
|
|
clean: true,
|
|
sourcemap: false,
|
|
exports: true,
|
|
});
|