diff --git a/components.json b/components.json index f8ac31c..571246e 100644 --- a/components.json +++ b/components.json @@ -1,14 +1,17 @@ { - "$schema": "https://shadcn-svelte.com/schema.json", + "$schema": "https://next.shadcn-svelte.com/schema.json", + "registry": "https://next.shadcn-svelte.com/registry", + "typescript": true, "style": "new-york", "tailwind": { - "config": "tailwind.config.js", - "css": "src\\app.css", + "config": "tailwind.config.ts", + "css": "src/styles/globals.css", "baseColor": "neutral" }, "aliases": { - "components": "@/ui", - "utils": "@/utils" - }, - "typescript": true + "components": "@/components", + "utils": "@/utils", + "ui": "@/ui", + "hooks": "@/hooks" + } }