feat: add shared/ui and shared barrel exports; add FSD path aliases to tsconfig

This commit is contained in:
Ilia Mashkov
2026-04-19 08:34:38 +03:00
parent ad188fcb21
commit 0fa66f275d
3 changed files with 32 additions and 1 deletions
+2
View File
@@ -0,0 +1,2 @@
export * from './ui'
export * from './lib'
+17
View File
@@ -0,0 +1,17 @@
export { Badge } from './Badge'
export type { BadgeVariant } from './Badge'
export { Button } from './Button'
export type { ButtonVariant, ButtonSize } from './Button'
export { Card, CardHeader, CardTitle, CardDescription, CardContent, CardFooter } from './Card'
export type { CardBackground } from './Card'
export { Input, Textarea } from './Input'
export { Section, Container } from './Section'
export type { SectionBackground, ContainerSize } from './Section'
export { SectionAccordion } from './SectionAccordion'
export { TechStackBrick, TechStackGrid } from './TechStack'