21 lines
435 B
JSON
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"]
|
||
|
}
|