Files
calendar/packages/platform/libraries/tsconfig.json
T
Keith WilliamsandGitHub 7701edb0bb chore: TS config - ignore node_modules in subdirectories (#19680)
* chore: TS config - ignore node_modules in subdirectories

* Update tsconfig.json

* Applied the pattern to the entire monorepo
2025-03-03 15:53:28 -03:00

25 lines
544 B
JSON

{
"extends": "@calcom/tsconfig/base.json",
"compilerOptions": {
"module": "CommonJS",
"target": "ES2021",
"jsx": "react-jsx",
"resolveJsonModule": true,
"types": ["jest"],
"outDir": "./dist",
"emitDecoratorMetadata": true,
"experimentalDecorators": true
},
"include": [".", "../../types/*.d.ts"],
"exclude": [
"dist",
"build",
"**/node_modules/**",
"**/*.test.*",
"**/__mocks__/*",
"**/__tests__/*",
"../../lib/hooks/useTheme.tsx",
"../../lib/getBrandColours.tsx"
]
}