cal.pub0.org/tsconfig.json

20 lines
397 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": {
"baseUrl": ".",
"paths": {
2022-03-30 12:17:55 +00:00
"@api/*": ["pages/api/*"],
"@lib/*": ["lib/*"],
"@/*": ["*"]
}
2022-03-23 21:22:57 +00:00
},
2022-04-22 01:36:33 +00:00
"include": [
"next-env.d.ts",
"../../packages/types/*.d.ts",
"../../packages/types/next-auth.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": ["node_modules", "templates", "auth"]
2022-03-18 13:42:42 +00:00
}