Files
myeasycms-v2/packages/ui/tsconfig.json
Giancarlo Buomprisco fafcafc221 Updated UI package to work with the new Shadcn CLI (#59)
Updated UI package to work with the new Shadcn CLI
2024-09-03 18:17:51 +08:00

15 lines
396 B
JSON

{
"extends": "@kit/tsconfig/base.json",
"compilerOptions": {
"tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json",
"paths": {
"~/components": ["./src/shadcn/*"],
"~/utils": ["./src/lib/utils"],
"~/lib/*": ["./src/lib/*"],
"~/hooks": ["./src/hooks"],
"~/ui": ["./src/shadcn/*"]
}
},
"include": ["*.ts", "src"],
"exclude": ["node_modules"]
}