mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
* fix(core): named exports instead of * from, use client directive added to main pkg * chore(root): changeset
10 lines
207 B
TypeScript
10 lines
207 B
TypeScript
import {defineConfig} from "tsup";
|
|
|
|
export default defineConfig({
|
|
clean: true,
|
|
target: "es2019",
|
|
entry: ["src/index.ts", "!src/scripts"],
|
|
format: ["cjs", "esm"],
|
|
banner: {js: '"use client";'},
|
|
});
|