aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/with-tailwind/packages/ui/tsup.config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'examples/with-tailwind/packages/ui/tsup.config.ts')
-rw-r--r--examples/with-tailwind/packages/ui/tsup.config.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/examples/with-tailwind/packages/ui/tsup.config.ts b/examples/with-tailwind/packages/ui/tsup.config.ts
deleted file mode 100644
index 7b2189a..0000000
--- a/examples/with-tailwind/packages/ui/tsup.config.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { defineConfig, Options } from "tsup";
-
-export default defineConfig((options: Options) => ({
- treeshake: true,
- splitting: true,
- entry: ["src/**/*.tsx"],
- format: ["esm"],
- dts: true,
- minify: true,
- clean: true,
- external: ["react"],
- ...options,
-}));