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
This commit is contained in:
Keith Williams
2025-03-03 15:53:28 -03:00
committed by GitHub
parent efd427831d
commit 7701edb0bb
21 changed files with 21 additions and 21 deletions
+1 -1
View File
@@ -15,5 +15,5 @@
},
"include": ["src/**/*.ts", "src/**/*.tsx", "env.d.ts", "*.tsx", "*.ts"],
// Exclude "test" because that has `api.test.ts` which imports @calcom/embed-react which needs it to be built using this tsconfig.json first. Excluding it here prevents type-check from validating test folder
"exclude": ["node_modules", "test"]
"exclude": ["**/node_modules/**", "test"]
}