* chore: Bump typescript version in @calcom/ui * Reduce required types from @calcom/types to just used ones
17 lines
385 B
JSON
17 lines
385 B
JSON
{
|
|
"extends": "@calcom/tsconfig/react-library.json",
|
|
"compilerOptions": {
|
|
"resolveJsonModule": true,
|
|
"experimentalDecorators": true
|
|
},
|
|
"include": [
|
|
"../types/window.d.ts",
|
|
"../types/next.d.ts",
|
|
"../types/tanstack-table.d.ts",
|
|
"../types/business-days-plugin.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx"
|
|
],
|
|
"exclude": ["dist", "build", "**/node_modules/**"]
|
|
}
|