cal/packages/app-store/tsconfig.json
Hariom Balhara e12b21a73c
Check app-store types on CI (#7190)
* Check app-store types on CI

* Fix ESLINt error
2023-03-02 11:58:31 -07:00

24 lines
621 B
JSON

{
"extends": "@calcom/tsconfig/react-library.json",
"exclude": ["dist", "build", "node_modules"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
/* A `package` should never import from `apps` */
"@components/*": ["../../apps/web/components/*"],
/* A `package` should never import from `apps` */
"@lib/*": ["../../apps/web/lib/*"],
"@prisma/client/*": ["@calcom/prisma/client/*"]
},
"resolveJsonModule": true
},
"include": [
"next-env.d.ts",
"@calcom/types",
"../types/*.d.ts",
"../types/next-auth.d.ts",
"**/*.ts",
"**/*.tsx"
]
}