17 lines
497 B
JSON
17 lines
497 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"]
|
|
}
|