Files
calendar/packages/platform/atoms/tsconfig.json
T

73 lines
2.1 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",
"../../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/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"
]
}