Files
calendar/packages/platform/atoms/tsconfig.json
T
MorganandGitHub 752cfa6bf9 chore: reduce atoms bundle size prisma types (#24001)
* chore: use kysely types instead of prisma types in atoms

* fixup! chore: use kysely types instead of prisma types in atoms

* fixup! Merge branch 'main' into reduce-atoms-bundle-size-prisma-types
2025-09-25 08:06:16 +05:30

77 lines
2.3 KiB
JSON

{
"extends": "@calcom/tsconfig/react-library.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/*": ["/*"],
"@/*": ["./src/*"],
"@calcom/lib": ["../../lib"],
"@calcom/lib/*": ["../../lib/*"],
"@calcom/features": ["../../features"],
"@calcom/features/*": ["../../features/*"],
"@calcom/prisma": ["../../prisma"],
"@calcom/dayjs": ["../../dayjs"],
"@calcom/prisma/*": ["../../prisma/*"],
"@calcom/dayjs/*": ["../../dayjs/*"],
"@calcom/platform-constants": ["../constants/index.ts"],
"@calcom/platform-types": ["../types/index.ts"],
"@calcom/platform-utils": ["../constants/index.ts"],
"@calcom/trpc": ["../../trpc"],
"@calcom/app-store": ["../../app-store"],
"@calcom/app-store/*": ["../../app-store/*"],
"@calcom/trpc/*": ["../../trpc/*"]
},
"resolveJsonModule": true,
"outDir": "./dist"
},
"include": [
".",
"../../types/next-auth.d.ts",
"../../types/next.d.ts",
"../../types/@wojtekmaj__react-daterange-picker.d.ts",
"../../types/business-days-plugin.d.ts",
"../../types/window.d.ts",
"../types",
"../constants",
"../utils",
"../libraries",
"../../dayjs",
"../../prisma/zod-utils.ts",
"../../prisma/zod",
"../../trpc/react",
"../../trpc/server/routers/viewer/slots",
"../../trpc/server/types",
"../../features/eventtypes",
"../../features/schedules",
"../../features/bookings/Booker",
"../../features/bookings/Booker",
"../../features/instant-meeting",
"../../features/bookings/handleMarkNoShow.ts",
"../../features/bookings/types.ts",
"../../features/bookings/lib",
"../../features/ee/workflows",
"../../features/ee/payments",
"../../features/ee/round-robin",
"../../features/ee/billing",
"../../features/shell",
"../../features/components",
"../../features/form-builder",
"../../features/data-table",
"../../kysely/types.ts",
"./prisma-types/index.ts",
"./kysely-types/index.ts",
"../../lib/intervalLimits/intervalLimitSchema.ts"
],
"exclude": [
"dist",
"build",
"**/node_modules/**",
"**/*WebWrapper.tsx",
"**/*.docs.mdx",
"**/*.stories.tsx",
"monorepo.ts",
"booker/export.ts",
"booker/index.ts"
]
}