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

24 lines
556 B
JSON
Raw Normal View History

2021-03-22 13:48:48 +00:00
{
"extends": "@calcom/tsconfig/nextjs.json",
2021-03-22 13:48:48 +00:00
"compilerOptions": {
"baseUrl": ".",
"paths": {
2022-02-09 23:59:34 +00:00
"@components/*": ["components/*"],
"@lib/*": ["lib/*"],
"@server/*": ["server/*"],
2022-02-15 22:48:19 +00:00
"@ee/*": ["ee/*"],
"@apps/*": ["lib/apps/*"]
},
2022-02-16 20:42:18 +00:00
"typeRoots": ["./types", "@calcom/types"],
"types": ["@types/jest", "@calcom/types/*.d.ts"]
2021-03-22 13:48:48 +00:00
},
2022-02-16 20:42:18 +00:00
"include": [
"next-env.d.ts",
"../../packages/types/*.d.ts",
"../../packages/types/next-auth.d.ts",
"**/*.ts",
"**/*.tsx"
],
2022-02-09 23:59:34 +00:00
"exclude": ["node_modules"]
2021-03-22 13:48:48 +00:00
}