@assistant-ui/mcp-docs-server 0.1.16 → 0.1.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (95) hide show
  1. package/.docs/organized/code-examples/with-ag-ui.md +149 -155
  2. package/.docs/organized/code-examples/with-ai-sdk-v5.md +98 -103
  3. package/.docs/organized/code-examples/with-assistant-transport.md +134 -222
  4. package/.docs/organized/code-examples/with-cloud.md +127 -134
  5. package/.docs/organized/code-examples/with-custom-thread-list.md +28 -48
  6. package/.docs/organized/code-examples/with-external-store.md +149 -154
  7. package/.docs/organized/code-examples/with-ffmpeg.md +132 -142
  8. package/.docs/organized/code-examples/with-langgraph.md +234 -228
  9. package/.docs/organized/code-examples/with-parent-id-grouping.md +149 -154
  10. package/.docs/organized/code-examples/with-react-hook-form.md +149 -155
  11. package/.docs/organized/code-examples/{store-example.md → with-store.md} +181 -157
  12. package/.docs/organized/code-examples/with-tanstack.md +31 -45
  13. package/.docs/raw/docs/runtimes/custom/custom-thread-list.mdx +36 -0
  14. package/.docs/raw/docs/runtimes/custom/local.mdx +31 -8
  15. package/.docs/raw/docs/ui/Scrollbar.mdx +0 -6
  16. package/dist/constants.d.ts +10 -0
  17. package/dist/constants.d.ts.map +1 -0
  18. package/dist/constants.js +14 -0
  19. package/dist/constants.js.map +1 -0
  20. package/dist/index.d.ts +4 -0
  21. package/dist/index.d.ts.map +1 -0
  22. package/dist/index.js +33 -1
  23. package/dist/index.js.map +1 -0
  24. package/dist/prepare-docs/code-examples.d.ts +2 -0
  25. package/dist/prepare-docs/code-examples.d.ts.map +1 -0
  26. package/dist/prepare-docs/code-examples.js +129 -0
  27. package/dist/prepare-docs/code-examples.js.map +1 -0
  28. package/dist/prepare-docs/copy-raw.d.ts +2 -0
  29. package/dist/prepare-docs/copy-raw.d.ts.map +1 -0
  30. package/dist/prepare-docs/copy-raw.js +50 -0
  31. package/dist/prepare-docs/copy-raw.js.map +1 -0
  32. package/dist/prepare-docs/prepare.d.ts +2 -0
  33. package/dist/prepare-docs/prepare.d.ts.map +1 -0
  34. package/dist/prepare-docs/prepare.js +18 -195
  35. package/dist/prepare-docs/prepare.js.map +1 -0
  36. package/dist/stdio.d.ts +3 -0
  37. package/dist/stdio.d.ts.map +1 -0
  38. package/dist/stdio.js +4 -5
  39. package/dist/stdio.js.map +1 -0
  40. package/dist/tools/docs.d.ts +23 -0
  41. package/dist/tools/docs.d.ts.map +1 -0
  42. package/dist/tools/docs.js +168 -0
  43. package/dist/tools/docs.js.map +1 -0
  44. package/dist/tools/examples.d.ts +23 -0
  45. package/dist/tools/examples.d.ts.map +1 -0
  46. package/dist/tools/examples.js +95 -0
  47. package/dist/tools/examples.js.map +1 -0
  48. package/dist/tools/tests/test-setup.d.ts +4 -0
  49. package/dist/tools/tests/test-setup.d.ts.map +1 -0
  50. package/dist/tools/tests/test-setup.js +36 -0
  51. package/dist/tools/tests/test-setup.js.map +1 -0
  52. package/dist/utils/logger.d.ts +7 -0
  53. package/dist/utils/logger.d.ts.map +1 -0
  54. package/dist/utils/logger.js +20 -0
  55. package/dist/utils/logger.js.map +1 -0
  56. package/dist/utils/mcp-format.d.ts +7 -0
  57. package/dist/utils/mcp-format.d.ts.map +1 -0
  58. package/dist/utils/mcp-format.js +11 -0
  59. package/dist/utils/mcp-format.js.map +1 -0
  60. package/dist/utils/mdx.d.ts +9 -0
  61. package/dist/utils/mdx.d.ts.map +1 -0
  62. package/dist/utils/mdx.js +27 -0
  63. package/dist/utils/mdx.js.map +1 -0
  64. package/dist/utils/paths.d.ts +8 -0
  65. package/dist/utils/paths.d.ts.map +1 -0
  66. package/dist/utils/paths.js +84 -0
  67. package/dist/utils/paths.js.map +1 -0
  68. package/dist/utils/security.d.ts +2 -0
  69. package/dist/utils/security.d.ts.map +1 -0
  70. package/dist/utils/security.js +43 -0
  71. package/dist/utils/security.js.map +1 -0
  72. package/package.json +37 -19
  73. package/src/constants.ts +22 -0
  74. package/src/index.ts +51 -0
  75. package/src/prepare-docs/code-examples.ts +158 -0
  76. package/src/prepare-docs/copy-raw.ts +55 -0
  77. package/src/prepare-docs/prepare.ts +24 -0
  78. package/src/stdio.ts +7 -0
  79. package/src/tools/docs.ts +207 -0
  80. package/src/tools/examples.ts +107 -0
  81. package/src/tools/tests/docs.test.ts +122 -0
  82. package/src/tools/tests/examples.test.ts +94 -0
  83. package/src/tools/tests/integration.test.ts +46 -0
  84. package/src/tools/tests/json-parsing.test.ts +23 -0
  85. package/src/tools/tests/mcp-protocol.test.ts +133 -0
  86. package/src/tools/tests/path-traversal.test.ts +81 -0
  87. package/src/tools/tests/test-setup.ts +40 -0
  88. package/src/utils/logger.ts +20 -0
  89. package/src/utils/mcp-format.ts +12 -0
  90. package/src/utils/mdx.ts +39 -0
  91. package/src/utils/paths.ts +114 -0
  92. package/src/utils/security.ts +52 -0
  93. package/src/utils/tests/security.test.ts +119 -0
  94. package/dist/chunk-M2RKUM66.js +0 -38
  95. package/dist/chunk-NVNFQ5ZO.js +0 -423
@@ -794,7 +794,7 @@ const ThreadScrollToBottom: FC = () => {
794
794
  <TooltipIconButton
795
795
  tooltip="Scroll to bottom"
796
796
  variant="outline"
797
- className="aui-thread-scroll-to-bottom -top-12 absolute z-10 self-center rounded-full p-4 disabled:invisible dark:bg-background dark:hover:bg-accent"
797
+ className="aui-thread-scroll-to-bottom absolute -top-12 z-10 self-center rounded-full p-4 disabled:invisible dark:bg-background dark:hover:bg-accent"
798
798
  >
799
799
  <ArrowDownIcon />
800
800
  </TooltipIconButton>
@@ -958,7 +958,7 @@ const AssistantActionBar: FC = () => {
958
958
  hideWhenRunning
959
959
  autohide="not-last"
960
960
  autohideFloat="single-branch"
961
- className="aui-assistant-action-bar-root -ml-1 col-start-3 row-start-2 flex gap-1 text-muted-foreground data-floating:absolute data-floating:rounded-md data-floating:border data-floating:bg-background data-floating:p-1 data-floating:shadow-sm"
961
+ className="aui-assistant-action-bar-root col-start-3 row-start-2 -ml-1 flex gap-1 text-muted-foreground data-floating:absolute data-floating:rounded-md data-floating:border data-floating:bg-background data-floating:p-1 data-floating:shadow-sm"
962
962
  >
963
963
  <ActionBarPrimitive.Copy asChild>
964
964
  <TooltipIconButton tooltip="Copy">
@@ -996,12 +996,12 @@ const UserMessage: FC = () => {
996
996
  <div className="aui-user-message-content wrap-break-word rounded-2xl bg-muted px-4 py-2.5 text-foreground">
997
997
  <MessagePrimitive.Parts />
998
998
  </div>
999
- <div className="aui-user-action-bar-wrapper -translate-x-full -translate-y-1/2 absolute top-1/2 left-0 pr-2">
999
+ <div className="aui-user-action-bar-wrapper absolute top-1/2 left-0 -translate-x-full -translate-y-1/2 pr-2">
1000
1000
  <UserActionBar />
1001
1001
  </div>
1002
1002
  </div>
1003
1003
 
1004
- <BranchPicker className="aui-user-branch-picker -mr-1 col-span-full col-start-1 row-start-3 justify-end" />
1004
+ <BranchPicker className="aui-user-branch-picker col-span-full col-start-1 row-start-3 -mr-1 justify-end" />
1005
1005
  </MessagePrimitive.Root>
1006
1006
  );
1007
1007
  };
@@ -1053,7 +1053,7 @@ const BranchPicker: FC<BranchPickerPrimitive.Root.Props> = ({
1053
1053
  <BranchPickerPrimitive.Root
1054
1054
  hideWhenSingleBranch
1055
1055
  className={cn(
1056
- "aui-branch-picker-root -ml-2 mr-2 inline-flex items-center text-muted-foreground text-xs",
1056
+ "aui-branch-picker-root mr-2 -ml-2 inline-flex items-center text-muted-foreground text-xs",
1057
1057
  className,
1058
1058
  )}
1059
1059
  {...rest}
@@ -1234,47 +1234,50 @@ import * as AvatarPrimitive from "@radix-ui/react-avatar";
1234
1234
 
1235
1235
  import { cn } from "@/lib/utils";
1236
1236
 
1237
- const Avatar = React.forwardRef<
1238
- React.ElementRef<typeof AvatarPrimitive.Root>,
1239
- React.ComponentPropsWithoutRef<typeof AvatarPrimitive.Root>
1240
- >(({ className, ...props }, ref) => (
1241
- <AvatarPrimitive.Root
1242
- ref={ref}
1243
- className={cn(
1244
- "relative flex h-10 w-10 shrink-0 overflow-hidden rounded-full",
1245
- className,
1246
- )}
1247
- {...props}
1248
- />
1249
- ));
1250
- Avatar.displayName = AvatarPrimitive.Root.displayName;
1251
-
1252
- const AvatarImage = React.forwardRef<
1253
- React.ElementRef<typeof AvatarPrimitive.Image>,
1254
- React.ComponentPropsWithoutRef<typeof AvatarPrimitive.Image>
1255
- >(({ className, ...props }, ref) => (
1256
- <AvatarPrimitive.Image
1257
- ref={ref}
1258
- className={cn("aspect-square h-full w-full", className)}
1259
- {...props}
1260
- />
1261
- ));
1262
- AvatarImage.displayName = AvatarPrimitive.Image.displayName;
1263
-
1264
- const AvatarFallback = React.forwardRef<
1265
- React.ElementRef<typeof AvatarPrimitive.Fallback>,
1266
- React.ComponentPropsWithoutRef<typeof AvatarPrimitive.Fallback>
1267
- >(({ className, ...props }, ref) => (
1268
- <AvatarPrimitive.Fallback
1269
- ref={ref}
1270
- className={cn(
1271
- "flex h-full w-full items-center justify-center rounded-full bg-muted",
1272
- className,
1273
- )}
1274
- {...props}
1275
- />
1276
- ));
1277
- AvatarFallback.displayName = AvatarPrimitive.Fallback.displayName;
1237
+ function Avatar({
1238
+ className,
1239
+ ...props
1240
+ }: React.ComponentProps<typeof AvatarPrimitive.Root>) {
1241
+ return (
1242
+ <AvatarPrimitive.Root
1243
+ data-slot="avatar"
1244
+ className={cn(
1245
+ "relative flex size-8 shrink-0 overflow-hidden rounded-full",
1246
+ className,
1247
+ )}
1248
+ {...props}
1249
+ />
1250
+ );
1251
+ }
1252
+
1253
+ function AvatarImage({
1254
+ className,
1255
+ ...props
1256
+ }: React.ComponentProps<typeof AvatarPrimitive.Image>) {
1257
+ return (
1258
+ <AvatarPrimitive.Image
1259
+ data-slot="avatar-image"
1260
+ className={cn("aspect-square size-full", className)}
1261
+ {...props}
1262
+ />
1263
+ );
1264
+ }
1265
+
1266
+ function AvatarFallback({
1267
+ className,
1268
+ ...props
1269
+ }: React.ComponentProps<typeof AvatarPrimitive.Fallback>) {
1270
+ return (
1271
+ <AvatarPrimitive.Fallback
1272
+ data-slot="avatar-fallback"
1273
+ className={cn(
1274
+ "flex size-full items-center justify-center rounded-full bg-muted",
1275
+ className,
1276
+ )}
1277
+ {...props}
1278
+ />
1279
+ );
1280
+ }
1278
1281
 
1279
1282
  export { Avatar, AvatarImage, AvatarFallback };
1280
1283
 
@@ -1294,14 +1297,13 @@ const buttonVariants = cva(
1294
1297
  {
1295
1298
  variants: {
1296
1299
  variant: {
1297
- default:
1298
- "bg-primary text-primary-foreground shadow-xs hover:bg-primary/90",
1300
+ default: "bg-primary text-primary-foreground hover:bg-primary/90",
1299
1301
  destructive:
1300
- "bg-destructive text-white shadow-xs hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:bg-destructive/60 dark:focus-visible:ring-destructive/40",
1302
+ "bg-destructive text-white hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:bg-destructive/60 dark:focus-visible:ring-destructive/40",
1301
1303
  outline:
1302
1304
  "border bg-background shadow-xs hover:bg-accent hover:text-accent-foreground dark:border-input dark:bg-input/30 dark:hover:bg-input/50",
1303
1305
  secondary:
1304
- "bg-secondary text-secondary-foreground shadow-xs hover:bg-secondary/80",
1306
+ "bg-secondary text-secondary-foreground hover:bg-secondary/80",
1305
1307
  ghost:
1306
1308
  "hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50",
1307
1309
  link: "text-primary underline-offset-4 hover:underline",
@@ -1311,6 +1313,8 @@ const buttonVariants = cva(
1311
1313
  sm: "h-8 gap-1.5 rounded-md px-3 has-[>svg]:px-2.5",
1312
1314
  lg: "h-10 rounded-md px-6 has-[>svg]:px-4",
1313
1315
  icon: "size-9",
1316
+ "icon-sm": "size-8",
1317
+ "icon-lg": "size-10",
1314
1318
  },
1315
1319
  },
1316
1320
  defaultVariants: {
@@ -1322,8 +1326,8 @@ const buttonVariants = cva(
1322
1326
 
1323
1327
  function Button({
1324
1328
  className,
1325
- variant,
1326
- size,
1329
+ variant = "default",
1330
+ size = "default",
1327
1331
  asChild = false,
1328
1332
  ...props
1329
1333
  }: React.ComponentProps<"button"> &
@@ -1335,6 +1339,8 @@ function Button({
1335
1339
  return (
1336
1340
  <Comp
1337
1341
  data-slot="button"
1342
+ data-variant={variant}
1343
+ data-size={size}
1338
1344
  className={cn(buttonVariants({ variant, size, className }))}
1339
1345
  {...props}
1340
1346
  />
@@ -1388,7 +1394,7 @@ function DialogOverlay({
1388
1394
  <DialogPrimitive.Overlay
1389
1395
  data-slot="dialog-overlay"
1390
1396
  className={cn(
1391
- "data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/80 data-[state=closed]:animate-out data-[state=open]:animate-in",
1397
+ "data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/50 data-[state=closed]:animate-out data-[state=open]:animate-in",
1392
1398
  className,
1393
1399
  )}
1394
1400
  {...props}
@@ -1399,24 +1405,32 @@ function DialogOverlay({
1399
1405
  function DialogContent({
1400
1406
  className,
1401
1407
  children,
1408
+ showCloseButton = true,
1402
1409
  ...props
1403
- }: React.ComponentProps<typeof DialogPrimitive.Content>) {
1410
+ }: React.ComponentProps<typeof DialogPrimitive.Content> & {
1411
+ showCloseButton?: boolean;
1412
+ }) {
1404
1413
  return (
1405
1414
  <DialogPortal data-slot="dialog-portal">
1406
1415
  <DialogOverlay />
1407
1416
  <DialogPrimitive.Content
1408
1417
  data-slot="dialog-content"
1409
1418
  className={cn(
1410
- "data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95 fixed top-[50%] left-[50%] z-50 grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] gap-4 rounded-lg border bg-background p-6 shadow-lg duration-200 data-[state=closed]:animate-out data-[state=open]:animate-in sm:max-w-lg",
1419
+ "data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 fixed top-[50%] left-[50%] z-50 grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] gap-4 rounded-lg border bg-background p-6 shadow-lg outline-none duration-200 data-[state=closed]:animate-out data-[state=open]:animate-in sm:max-w-lg",
1411
1420
  className,
1412
1421
  )}
1413
1422
  {...props}
1414
1423
  >
1415
1424
  {children}
1416
- <DialogPrimitive.Close className="absolute top-4 right-4 rounded-xs opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-hidden focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground [&_svg:not([class*='size-'])]:size-4 [&_svg]:pointer-events-none [&_svg]:shrink-0">
1417
- <XIcon />
1418
- <span className="sr-only">Close</span>
1419
- </DialogPrimitive.Close>
1425
+ {showCloseButton && (
1426
+ <DialogPrimitive.Close
1427
+ data-slot="dialog-close"
1428
+ className="absolute top-4 right-4 rounded-xs opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-hidden focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground [&_svg:not([class*='size-'])]:size-4 [&_svg]:pointer-events-none [&_svg]:shrink-0"
1429
+ >
1430
+ <XIcon />
1431
+ <span className="sr-only">Close</span>
1432
+ </DialogPrimitive.Close>
1433
+ )}
1420
1434
  </DialogPrimitive.Content>
1421
1435
  </DialogPortal>
1422
1436
  );
@@ -1537,13 +1551,13 @@ function TooltipContent({
1537
1551
  data-slot="tooltip-content"
1538
1552
  sideOffset={sideOffset}
1539
1553
  className={cn(
1540
- "fade-in-0 zoom-in-95 data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 w-fit origin-(--radix-tooltip-content-transform-origin) animate-in text-balance rounded-md bg-primary px-3 py-1.5 text-primary-foreground text-xs data-[state=closed]:animate-out",
1554
+ "fade-in-0 zoom-in-95 data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 w-fit origin-(--radix-tooltip-content-transform-origin) animate-in text-balance rounded-md bg-foreground px-3 py-1.5 text-background text-xs data-[state=closed]:animate-out",
1541
1555
  className,
1542
1556
  )}
1543
1557
  {...props}
1544
1558
  >
1545
1559
  {children}
1546
- <TooltipPrimitive.Arrow className="z-50 size-2.5 translate-y-[calc(-50%_-_2px)] rotate-45 rounded-[2px] bg-primary fill-primary" />
1560
+ <TooltipPrimitive.Arrow className="z-50 size-2.5 translate-y-[calc(-50%_-_2px)] rotate-45 rounded-[2px] bg-foreground fill-foreground" />
1547
1561
  </TooltipPrimitive.Content>
1548
1562
  </TooltipPrimitive.Portal>
1549
1563
  );
@@ -1581,47 +1595,46 @@ export default nextConfig;
1581
1595
 
1582
1596
  ```json
1583
1597
  {
1584
- "name": "example-with-ai-sdk-v5",
1585
- "private": true,
1598
+ "name": "with-ai-sdk-v5",
1586
1599
  "version": "0.0.0",
1600
+ "private": true,
1587
1601
  "type": "module",
1602
+ "scripts": {
1603
+ "dev": "next dev",
1604
+ "build": "next build",
1605
+ "start": "next start"
1606
+ },
1588
1607
  "dependencies": {
1589
- "@ai-sdk/openai": "^2.0.77",
1590
- "@ai-sdk/react": "^2.0.107",
1591
- "@assistant-ui/react": "workspace:^",
1608
+ "@ai-sdk/openai": "^2.0.88",
1609
+ "@assistant-ui/react": "workspace:*",
1592
1610
  "@assistant-ui/react-ai-sdk": "workspace:*",
1593
- "@assistant-ui/react-markdown": "workspace:^",
1611
+ "@assistant-ui/react-markdown": "workspace:*",
1594
1612
  "@radix-ui/react-avatar": "^1.1.11",
1595
1613
  "@radix-ui/react-dialog": "^1.1.15",
1596
1614
  "@radix-ui/react-slot": "^1.2.4",
1597
1615
  "@radix-ui/react-tooltip": "^1.2.8",
1598
- "@tailwindcss/postcss": "^4.1.17",
1599
- "ai": "^5.0.107",
1616
+ "ai": "^5.0.116",
1600
1617
  "class-variance-authority": "^0.7.1",
1601
1618
  "clsx": "^2.1.1",
1602
- "lucide-react": "^0.556.0",
1603
- "next": "16.0.7",
1604
- "postcss": "^8.5.6",
1605
- "react": "19.2.1",
1606
- "react-dom": "19.2.1",
1619
+ "lucide-react": "^0.562.0",
1620
+ "next": "16.1.0",
1621
+ "react": "19.2.3",
1622
+ "react-dom": "19.2.3",
1607
1623
  "remark-gfm": "^4.0.1",
1608
1624
  "tailwind-merge": "^3.4.0",
1609
- "tailwindcss": "^4.1.17",
1610
- "zod": "^4.1.13",
1625
+ "zod": "^4.2.1",
1611
1626
  "zustand": "^5.0.9"
1612
1627
  },
1613
1628
  "devDependencies": {
1614
1629
  "@assistant-ui/x-buildutils": "workspace:*",
1615
- "@types/node": "^24.10.1",
1630
+ "@tailwindcss/postcss": "^4.1.18",
1631
+ "@types/node": "^25.0.3",
1616
1632
  "@types/react": "^19.2.7",
1617
1633
  "@types/react-dom": "^19.2.3",
1634
+ "postcss": "^8.5.6",
1635
+ "tailwindcss": "^4.1.18",
1618
1636
  "tw-animate-css": "^1.4.0",
1619
1637
  "typescript": "^5.9.3"
1620
- },
1621
- "scripts": {
1622
- "dev": "next dev",
1623
- "build": "next build",
1624
- "start": "next start"
1625
1638
  }
1626
1639
  }
1627
1640
 
@@ -1710,29 +1723,11 @@ The API route at `/api/chat` uses the new `streamText` function from AI SDK v5 t
1710
1723
 
1711
1724
  ```json
1712
1725
  {
1713
- "extends": "@assistant-ui/x-buildutils/ts/base",
1726
+ "extends": "@assistant-ui/x-buildutils/ts/next",
1714
1727
  "compilerOptions": {
1715
- "target": "ES6",
1716
- "module": "ESNext",
1717
- "incremental": true,
1718
- "plugins": [
1719
- {
1720
- "name": "next"
1721
- }
1722
- ],
1723
- "allowJs": true,
1724
- "strictNullChecks": true,
1725
- "jsx": "preserve",
1726
- "paths": {
1727
- "@/*": ["./*"],
1728
- "@assistant-ui/*": ["../../packages/*/src"],
1729
- "@assistant-ui/react/*": ["../../packages/react/src/*"],
1730
- "@assistant-ui/tap/*": ["../../packages/tap/src/*"],
1731
- "assistant-stream": ["../../packages/assistant-stream/src"],
1732
- "assistant-stream/*": ["../../packages/assistant-stream/src/*"]
1733
- }
1728
+ "paths": { "@/*": ["./*"] }
1734
1729
  },
1735
- "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
1730
+ "include": ["**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
1736
1731
  "exclude": ["node_modules"]
1737
1732
  }
1738
1733