34 lines
777 B
JSON
34 lines
777 B
JSON
{
|
|
"extends": "@calcom/tsconfig/react-library.json",
|
|
"exclude": ["dist", "types", "build", "**/node_modules/**"],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@prisma/client/*": ["@calcom/prisma/client/*"],
|
|
"@calcom/testing/*": ["../testing/src/*"]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"experimentalDecorators": true
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"@calcom/types",
|
|
"../types/*.d.ts",
|
|
"../types/next-auth.d.ts",
|
|
"*.ts",
|
|
"*.tsx",
|
|
"_components/**/*.ts",
|
|
"_components/**/*.tsx",
|
|
"_lib/**/*.ts",
|
|
"_lib/**/*.tsx",
|
|
"_pages/**/*.ts",
|
|
"_pages/**/*.tsx",
|
|
"_utils/**/*.ts",
|
|
"_utils/**/*.tsx",
|
|
"templates/**/*.ts",
|
|
"templates/**/*.tsx",
|
|
"tests/**/*.ts",
|
|
"tests/**/*.tsx"
|
|
]
|
|
}
|