From 461b4da742144e2d4d62a3f3af3901bed1db8ddc Mon Sep 17 00:00:00 2001
From: LuLaValva <lukelavalva@gmail.com>
Date: Thu, 16 Nov 2023 10:50:49 -0800
Subject: [PATCH] docs: add exports

---
 packages/marko/docs/marko-json.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/packages/marko/docs/marko-json.md b/packages/marko/docs/marko-json.md
index b6e5ce3d75..ea1905bd02 100644
--- a/packages/marko/docs/marko-json.md
+++ b/packages/marko/docs/marko-json.md
@@ -131,6 +131,7 @@ Similar to [`marko-tag.json`](#single-component-definition), this file is discov
 ```js
 {
   "taglib-id": "my-custom-tag-library", // Names the component library, for better errors.
+  "exports": "./dist", // Where to export the compiled components.
   "tags-dir": "./ui-modules", // What directory to crawl to autodiscover components. Default:`./components/`
   "taglib-imports": ["./some-folder/marko.json", "./other-folder/marko.json"], // Creates a _combined_ tag library by referencing others.