Skip to content

Commit

Permalink
chore: fix tsconfig excludes (#5525)
Browse files Browse the repository at this point in the history
**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.
  • Loading branch information
merceyz authored Jun 26, 2023
1 parent 21fcc79 commit 30b0d09
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@
"useUnknownInCatchVariables": false
},
"exclude": [
"packages/*/{lib,bin,bundles}",
"packages/*/lib",
"packages/*/bin",
"packages/*/bundles",
"packages/yarnpkg-doctor/fixtures",
"packages/gatsby",
"packages/docusaurus",
Expand Down

0 comments on commit 30b0d09

Please sign in to comment.