bb-plane-fork/packages/propel/tsdown.config.ts
Anmol Singh Bhatia 498613284e
[WEB-4841] chore: calendar component migration UI to propel (#7730)
* chore: move calendar components and dependencies

* chore: update package configurations

* chore: calendar import updated

* chore: propel config updated

* chore: propel calendar code refactor

* chore: code refactor

* fix: build error
2025-09-09 23:50:51 +05:30

31 lines
762 B
TypeScript

import { defineConfig } from "tsdown";
export default defineConfig({
entry: [
"src/accordion/index.ts",
"src/avatar/index.ts",
"src/calendar/index.ts",
"src/card/index.ts",
"src/charts/*/index.ts",
"src/collapsible/index.ts",
"src/combobox/index.ts",
"src/command/index.ts",
"src/dialog/index.ts",
"src/emoji-icon-picker/index.ts",
"src/icons/index.ts",
"src/menu/index.ts",
"src/popover/index.ts",
"src/scrollarea/index.ts",
"src/skeleton/index.ts",
"src/switch/index.ts",
"src/table/index.ts",
"src/tabs/index.ts",
"src/toast/index.ts",
"src/tooltip/index.ts",
"src/utils/index.ts",
],
outDir: "dist",
format: ["esm", "cjs"],
dts: true,
copy: ["src/styles"],
});