cal.pub0.org/apps/api/tsconfig.json

21 lines
435 B
JSON
Raw Normal View History

2022-03-18 13:42:42 +00:00
{
2022-04-22 01:36:33 +00:00
"extends": "@calcom/tsconfig/nextjs.json",
2022-03-23 21:22:57 +00:00
"compilerOptions": {
2022-05-20 18:48:30 +00:00
"strict": true,
2022-10-14 17:42:05 +00:00
"jsx": "preserve",
"baseUrl": ".",
"paths": {
2022-11-25 13:56:58 +00:00
"~/*": ["*"],
"@prisma/client/*": ["@calcom/prisma/client/*"]
2022-03-30 12:17:55 +00:00
}
2022-03-23 21:22:57 +00:00
},
2022-10-14 17:42:05 +00:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
2022-11-25 13:56:58 +00:00
"../../packages/types/*.d.ts",
2022-10-14 17:42:05 +00:00
"../../packages/types/next-auth.d.ts"
],
2022-11-25 13:56:58 +00:00
"exclude": ["node_modules", "templates", "auth"]
2022-03-18 13:42:42 +00:00
}