* feat: added recurringEvent attribute to api/v2/event-types * changed `recurringEvent` to `recurrence` * Update CHANGELOG.md * remove /dist/ import * change `as` to `satisfies` * testing some changes * Revert "testing some changes" This reverts commit 464d2611ed19dbd6ae390332b4d6dd5884bcae3b. * Update recurrence.input.ts * fix: apiv2 tsconfig enums * Update CHANGELOG.md * removed dev imports * Update package.json * Update api-request.spec.ts * Update api-request.spec.ts * added recurrence to update-event-type.input --------- Co-authored-by: Morgan Vernay <morgan@cal.com>
40 lines
1.3 KiB
JSON
40 lines
1.3 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"resolveJsonModule": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "ES2021",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"baseUrl": ".",
|
|
"jsx": "react-jsx",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@prisma/client/*": ["@calcom/prisma/client/*"],
|
|
"@calcom/platform-constants": ["../../../packages/platform/constants/index.ts"],
|
|
"@calcom/platform-types": ["../../../packages/platform/types/index.ts"],
|
|
"@calcom/platform-utils": ["../../../packages/platform/utils/index.ts"],
|
|
"@calcom/platform-enums": ["../../../packages/platform/enums/index.ts"]
|
|
},
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"forceConsistentCasingInFileNames": false,
|
|
"noFallthroughCasesInSwitch": false
|
|
},
|
|
"watchOptions": {
|
|
"watchFile": "fixedPollingInterval",
|
|
"watchDirectory": "useFsEvents",
|
|
"fallbackPolling": "dynamicPriority",
|
|
"synchronousWatchDirectory": true,
|
|
"excludeDirectories": ["**/node_modules", "dist"]
|
|
},
|
|
"exclude": ["./dist", "./node_modules", "next-i18next.config.js"],
|
|
"include": ["./**/*.ts", "../../../packages/types/*.d.ts"]
|
|
}
|