2
0
Files
cal/calcom/apps/web/tsconfig.json
2024-08-09 00:39:27 +02:00

35 lines
918 B
JSON

{
"extends": "@calcom/tsconfig/nextjs.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/*": ["modules/*"],
"@components/*": ["components/*"],
"@pages/*": ["pages/*"],
"@lib/*": ["lib/*"],
"@server/*": ["server/*"],
"@prisma/client/*": ["@calcom/prisma/client/*"]
},
"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/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"]
}