* remove barrel export for client * fix more imports * remove server barrel * remove more barrel exporst and fix tssconfig * fix types * fix imports for removed barrels * fig ssg createserverside helpers * restore lock * new yarn lock * remove barel exports * remove barrel * replace client with react in tsconfig * fix yarn lock * Update exports for trpc to not be types * add ENDPOINTS export to the correct location * other exports fixes lost due to barrel * fix client error export * more imports --------- Co-authored-by: hbjORbj <sldisek783@gmail.com> Co-authored-by: Keith Williams <keithwillcode@gmail.com>
42 lines
1.3 KiB
JSON
42 lines
1.3 KiB
JSON
{
|
|
"extends": "@calcom/tsconfig/react-library.json",
|
|
"paths": {
|
|
"~/*": ["/*"],
|
|
"@calcom/app-store": ["../app-store"],
|
|
"@calcom/app-store/*": ["../app-store/*"],
|
|
"@calcom/dayjs": ["../dayjs"],
|
|
"@calcom/dayjs/*": ["../dayjs/*"],
|
|
"@calcom/features": ["../features"],
|
|
"@calcom/features/*": ["../features/*"],
|
|
"@calcom/lib": ["../lib"],
|
|
"@calcom/lib/*": ["../lib/*"],
|
|
"@calcom/platform-constants": ["../platform/constants/index.ts"],
|
|
"@calcom/platform-enums": ["../platform/enums/index.ts"],
|
|
"@calcom/platform-types": ["../platform/types/index.ts"],
|
|
"@calcom/platform-utils": ["../platform/utils/index.ts"],
|
|
"@calcom/prisma": ["../prisma"],
|
|
"@calcom/prisma/*": ["../prisma/*"],
|
|
"@calcom/repository/*": ["../lib/server/repository/*"]
|
|
},
|
|
"include": [
|
|
"../types/@wojtekmaj__react-daterange-picker.d.ts",
|
|
"../types/business-days-plugin.d.ts",
|
|
"../types/next-auth.d.ts",
|
|
"../types/tanstack-table.d.ts",
|
|
"../types/next.d.ts",
|
|
"../types/window.d.ts",
|
|
"react"
|
|
],
|
|
"exclude": ["**/node_modules/**", "types/router.d.ts"],
|
|
"compilerOptions": {
|
|
"isolatedModules": false,
|
|
"noEmit": false,
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"experimentalDecorators": true,
|
|
"declarationMap": false,
|
|
"resolveJsonModule": true,
|
|
"outFile": "types/router.d.ts"
|
|
}
|
|
}
|