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

17 lines
405 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/*"],
"@ee/*": ["ee/*"]
},
"typeRoots": ["./types"],
2022-02-09 23:59:34 +00:00
"types": ["@types/jest"]
2021-03-22 13:48:48 +00:00
},
2022-02-09 23:59:34 +00:00
"include": ["next-env.d.ts", "@types/*.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
2021-03-22 13:48:48 +00:00
}