mirror of
https://github.com/gosticks/plane.git
synced 2025-10-16 12:45:33 +00: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>
22 lines
469 B
TypeScript
22 lines
469 B
TypeScript
import { defineConfig } from "tsdown";
|
|
|
|
export default defineConfig({
|
|
entry: [
|
|
"src/avatar/index.ts",
|
|
"src/charts/index.ts",
|
|
"src/dialog/index.ts",
|
|
"src/menu/index.ts",
|
|
"src/table/index.ts",
|
|
"src/tabs/index.ts",
|
|
"src/popover/index.ts",
|
|
"src/command/index.ts",
|
|
"src/combobox/index.ts",
|
|
"src/tooltip/index.ts",
|
|
"src/card/index.ts",
|
|
"src/switch/index.ts",
|
|
],
|
|
outDir: "dist",
|
|
format: ["esm", "cjs"],
|
|
dts: true,
|
|
});
|