* chore: Add ./components/[name]/index.ts map to package.json * fix: Clarify Popover exports * fix: re-add dropdown to calcom/ui barrel * chore: Add icon barrel file re-export * Fix all calcom/ui imports of its own barrel * Never say 'fix all remaining..' it's never true * Some type fixeS * Linking fixes * Rename sheet.tsx to Sheet.tsx Done through UI, console does NOT like this. * Fixed some test failures
37 lines
1021 B
JSON
37 lines
1021 B
JSON
{
|
|
"extends": "@calcom/tsconfig/nextjs.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["modules/*"],
|
|
"@components/*": ["components/*"],
|
|
"@pages/*": ["pages/*"],
|
|
"@lib/*": ["lib/*"],
|
|
"@server/*": ["server/*"],
|
|
"@prisma/client/*": ["@calcom/prisma/client/*"],
|
|
"@calcom/ui/*": ["../../packages/ui/components/*"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"strictNullChecks": true,
|
|
"experimentalDecorators": true
|
|
},
|
|
"include": [
|
|
/* Find a way to not require this - App files don't belong here. */
|
|
"../../packages/app-store/routing-forms/env.d.ts",
|
|
"next-env.d.ts",
|
|
"../../packages/trpc/types/router.d.ts",
|
|
"../../packages/types/*.d.ts",
|
|
"../../packages/types/next-auth.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
"../../packages/features/bookings/lib/getBookingInfo.ts",
|
|
"../../packages/features/bookings/lib/getUserBooking.ts"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|