mirror of
https://github.com/makeplane/plane.git
synced 2025-12-23 15:19:37 +01:00
* dev: animated counter added to propel * chore: animated counter story added * chore: propel config updated * chore: code refactor * dev: emoji reaction and renderer component added to propel * dev: emoji reaction story added * chore: propel config updated * chore: code refactor * fix: format error * chore: lint error resolved --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
39 lines
989 B
TypeScript
39 lines
989 B
TypeScript
import { defineConfig } from "tsdown";
|
|
|
|
export default defineConfig({
|
|
entry: [
|
|
"src/accordion/index.ts",
|
|
"src/animated-counter/index.ts",
|
|
"src/avatar/index.ts",
|
|
"src/button/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/context-menu/index.ts",
|
|
"src/dialog/index.ts",
|
|
"src/emoji-icon-picker/index.ts",
|
|
"src/emoji-reaction/index.ts",
|
|
"src/emoji-reaction-picker/index.ts",
|
|
"src/icons/index.ts",
|
|
"src/menu/index.ts",
|
|
"src/pill/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/toolbar/index.ts",
|
|
"src/tooltip/index.ts",
|
|
"src/utils/index.ts",
|
|
],
|
|
outDir: "dist",
|
|
format: ["esm", "cjs"],
|
|
dts: true,
|
|
copy: ["src/styles"],
|
|
});
|