* chore: TS config - ignore node_modules in subdirectories * Update tsconfig.json * Applied the pattern to the entire monorepo
14 lines
388 B
JSON
14 lines
388 B
JSON
{
|
|
"extends": "@calcom/tsconfig/react-library.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["/*"]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true
|
|
},
|
|
"include": [".", "../types/next-auth.d.ts", "../types/tanstack-table.d.ts"],
|
|
"exclude": ["dist", "build", "**/node_modules/**", "**/*.test.*", "**/__mocks__/*", "**/__tests__/*"]
|
|
}
|