mirror of
https://github.com/makeplane/plane.git
synced 2025-12-18 12:57:52 +01:00
* feat: migrat to tsdown to tsup * fix: build scripts * fix: lock file fixes * fix: adding build process to i18n and propel packages * fix: lint warning * chore: update services module entry points * fix: lock file * fix: lock file * fix: remove tsc from build * fix: tsdown configs * fix: remove tsc step from build process --------- Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com> Co-authored-by: Aaron Reisman <aaron.reisman@plane.so>
12 lines
228 B
TypeScript
12 lines
228 B
TypeScript
import { defineConfig } from "tsdown";
|
|
|
|
export default defineConfig({
|
|
entry: ["src/index.ts"],
|
|
outDir: "dist",
|
|
format: ["esm", "cjs"],
|
|
external: ["react", "react-dom"],
|
|
dts: true,
|
|
sourcemap: true,
|
|
clean: true,
|
|
});
|