Files
calendar/apps/api/v2/tsconfig.json
T

29 lines
769 B
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/*"]
},
"incremental": true,
"skipLibCheck": true,
"strict": true,
"noImplicitAny": true,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false
},
"exclude": ["./dist", "next-i18next.config.js"],
"include": ["./**/*.ts", "../../../packages/types/*.d.ts"]
}