-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno-client.json
More file actions
22 lines (22 loc) · 1.1 KB
/
deno-client.json
File metadata and controls
22 lines (22 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"//": "Client-only Deno config used by `deno bundle` for browser bundles. The root deno.json sets jsxImportSource to hono/jsx for server-side rendering; the React client files need React's automatic JSX runtime instead. Keeping this in a separate config file is the cleanest way to avoid the two runtimes fighting each other at bundle time.",
"nodeModulesDir": "auto",
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react"
},
"imports": {
"react": "npm:react@^19.0.0",
"react/jsx-runtime": "npm:react@^19.0.0/jsx-runtime",
"react-dom": "npm:react-dom@^19.0.0",
"react-dom/client": "npm:react-dom@^19.0.0/client",
"@datasketch/monkeytab": "npm:@datasketch/monkeytab@^0.2.0",
"@assistant-ui/react": "npm:@assistant-ui/react@^0.12.24",
"clsx": "npm:clsx@^2.1.1",
"tailwind-merge": "npm:tailwind-merge@^3.5.0",
"lucide-react": "npm:lucide-react@^0.479.0",
"class-variance-authority": "npm:class-variance-authority@^0.7.1",
"@radix-ui/react-tooltip": "npm:@radix-ui/react-tooltip@^1.2.8",
"@radix-ui/react-slot": "npm:@radix-ui/react-slot@^1.2.4"
}
}