cal/apps/api/tsconfig.json
2023-05-25 11:29:10 -07:00

21 lines
435 B
JSON

{
"extends": "@calcom/tsconfig/nextjs.json",
"compilerOptions": {
"strict": true,
"jsx": "preserve",
"baseUrl": ".",
"paths": {
"~/*": ["*"],
"@prisma/client/*": ["@calcom/prisma/client/*"]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"../../packages/types/*.d.ts",
"../../packages/types/next-auth.d.ts"
],
"exclude": ["node_modules", "templates", "auth"]
}