26 lines
534 B
JSON
26 lines
534 B
JSON
{
|
|
"extends": "@calcom/tsconfig/react-library.json",
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./*"]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true
|
|
},
|
|
"include": [".", "../types/next-auth.d.ts", "../types/tanstack-table.d.ts"],
|
|
"exclude": [
|
|
"dist",
|
|
"build",
|
|
"**/node_modules/**",
|
|
"**/*.test.*",
|
|
"**/__mocks__/*",
|
|
"**/__tests__/*",
|
|
"auth",
|
|
"ee"
|
|
]
|
|
}
|