diff --git a/README.md b/README.md
index cce3ba0..7713798 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,7 @@
- 🚀 **Fast**: Generates `.d.ts` files significantly faster than `tsc`.
- 🎨 **Transformer**: Support Oxc, SWC, and TypeScript transformer.
- 📦 **Zero Config**: No configuration required, works out of the box.
-- ✨ **Bundler Support**: Works with Vite, Rollup, and esbuild.
+- ✨ **Bundler Support**: Works with Vite, Rollup, esbuild and Farm.
## Installation
@@ -75,6 +75,20 @@ build({
+
+Farm
+
+```ts
+// farm.config.ts
+import UnpluginIsolatedDecl from 'unplugin-isolated-decl/farm'
+
+export default defineConfig({
+ plugins: [UnpluginIsolatedDecl()],
+})
+```
+
+
+
## Options
```ts