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
@@ -10,5 +10,5 @@
"**/*.ts",
"**/*.tsx"
],
"exclude": ["dist", "build", "node_modules"]
"exclude": ["dist", "build", "**/node_modules/**"]
}