Skip to content

Commit 1cc1660

Browse files
committed
chore: fix tsconfig excludes (#5525)
**What's the problem this PR addresses?** The exclude pattern `packages/*/{lib,bin,bundles}` in the `tsconfig.json` file doesn't work. **How did you fix it?** Split it out into separate entries. **Checklist** - [x] I have read the [Contributing Guide](https://yarnpkg.com/advanced/contributing). - [x] I have set the packages that need to be released for my changes to be effective. - [x] I will check that all automated PR checks pass before the PR gets reviewed.
1 parent 6e83a63 commit 1cc1660

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818
"useUnknownInCatchVariables": false
1919
},
2020
"exclude": [
21-
"packages/*/{lib,bin,bundles}",
21+
"packages/*/lib",
22+
"packages/*/bin",
23+
"packages/*/bundles",
2224
"packages/yarnpkg-doctor/fixtures",
2325
"packages/gatsby",
2426
"packages/yarnpkg-libzip/artifacts"

0 commit comments

Comments
 (0)