* Refactors related to enabling typescript 5.3.3 in @calcom/trpc * Also skip respective tests (obviously logic is broken) * This causes problems for some reason, revert * Bring back QueryCell as it's used by atoms
44 lines
1.3 KiB
JSON
44 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/*"]
|
|
},
|
|
"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",
|
|
"client",
|
|
"next",
|
|
"react",
|
|
"server"
|
|
],
|
|
"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"
|
|
}
|
|
}
|