mirror of
https://github.com/makeplane/plane.git
synced 2025-12-16 03:47:54 +01:00
* fix: esm module imports for live and editor * fix: convert all pacakges to export esm and cjs build * fix: auto export * fix: translation files formatting * fix: convert eslint files to cjs files for supporting current config * fix: code uuid package upgrade --------- Co-authored-by: Aaron Reisman <aaron.reisman@plane.so>
12 lines
210 B
TypeScript
12 lines
210 B
TypeScript
import { defineConfig } from "tsdown";
|
|
|
|
export default defineConfig({
|
|
entry: ["src/index.ts"],
|
|
outDir: "dist",
|
|
format: ["esm", "cjs"],
|
|
exports: true,
|
|
dts: true,
|
|
clean: true,
|
|
sourcemap: false,
|
|
});
|