diff --git a/packages/path/tsconfig.json b/packages/path/tsconfig.json index bfa0fea..146fe4e 100644 --- a/packages/path/tsconfig.json +++ b/packages/path/tsconfig.json @@ -1,29 +1,29 @@ { - "compilerOptions": { - // Environment setup & latest features - "lib": ["ESNext"], - "target": "ESNext", - "module": "Preserve", - "moduleDetection": "force", - "jsx": "react-jsx", - "allowJs": true, + "compilerOptions": { + // Environment setup & latest features + "lib": ["ESNext"], + "target": "ESNext", + "module": "Preserve", + "moduleDetection": "force", + "jsx": "react-jsx", + "allowJs": true, - // Bundler mode - "moduleResolution": "bundler", - "allowImportingTsExtensions": true, - "verbatimModuleSyntax": true, - "noEmit": true, + // Bundler mode + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "verbatimModuleSyntax": true, + "noEmit": true, - // Best practices - "strict": true, - "skipLibCheck": true, - "noFallthroughCasesInSwitch": true, - "noUncheckedIndexedAccess": true, - "noImplicitOverride": true, + // Best practices + "strict": true, + "skipLibCheck": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedIndexedAccess": true, + "noImplicitOverride": true, - // Some stricter flags (disabled by default) - "noUnusedLocals": false, - "noUnusedParameters": false, - "noPropertyAccessFromIndexSignature": false - } + // Some stricter flags (disabled by default) + "noUnusedLocals": false, + "noUnusedParameters": false, + "noPropertyAccessFromIndexSignature": false + } } diff --git a/packages/web/bun-env.d.ts b/packages/web/bun-env.d.ts index 72f1c26..2380a69 100644 --- a/packages/web/bun-env.d.ts +++ b/packages/web/bun-env.d.ts @@ -1,17 +1,17 @@ // Generated by `bun init` declare module "*.svg" { - /** - * A path to the SVG file - */ - const path: `${string}.svg`; - export = path; + /** + * A path to the SVG file + */ + const path: `${string}.svg` + export = path } declare module "*.module.css" { - /** - * A record of class names to their corresponding CSS module classes - */ - const classes: { readonly [key: string]: string }; - export = classes; + /** + * A record of class names to their corresponding CSS module classes + */ + const classes: { readonly [key: string]: string } + export = classes } diff --git a/packages/web/src/components/ui/breadcrumb.tsx b/packages/web/src/components/ui/breadcrumb.tsx index eb88f32..4b95252 100644 --- a/packages/web/src/components/ui/breadcrumb.tsx +++ b/packages/web/src/components/ui/breadcrumb.tsx @@ -1,109 +1,109 @@ -import * as React from "react" import { Slot } from "@radix-ui/react-slot" import { ChevronRight, MoreHorizontal } from "lucide-react" +import type * as React from "react" import { cn } from "@/lib/utils" function Breadcrumb({ ...props }: React.ComponentProps<"nav">) { - return