-
-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Specifying directory works differently with TypeScript #199
Comments
so basically tsconfck does not implement this part correctly currently:
https://www.typescriptlang.org/tsconfig/#include i have to check what to do here, easiest might be to append a |
this is related to #195 as well, rereading the include docs, it looks like |
Ah, true. It seems |
might have to dig into the implementation of ts itself, i am not sure this is intended or just the wording of the docs. would be confusing behavior... |
looks like it is indeed just the docs wording and if the last component of a path does not contain a wildcard they append |
released fix in 3.1.4, vite needs to be updated to use this version as it bundles tsconfck |
Description
When the tsconfig.json has a directory specified in
includes
option, tsconfck'sparse
function does not treat that as all files under that directory unlike TypeScript.parseNative
function works correctly.Reproduction
https://stackblitz.com/edit/node-7ykh9n?file=tsconfig.json
Additional Information
The text was updated successfully, but these errors were encountered: