-
Notifications
You must be signed in to change notification settings - Fork 202
can't find .json in project file list despite tsc ok #1512
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
Comments
Hi. Thanks for your report. Initial investigation suggest that this is probably an upstream problem, but I couldn't find a corresponding upstream issue during a cursory search. The issue does not manifest if The issue only manifests on
I have a vague suspicion that microsoft/TypeScript#27844 might have missed something in the tsserver code. There are reports of this happening in VS Code (f.ex. TypeStrong/ts-loader#905 (comment)). Not sure how up-to-date those are though. As a workaround, you can add |
I've created an upstream issue with minimal repro. Hopefully they fix it eventually. microsoft/TypeScript#33827 |
thanks a lot ! |
Issue reportedly fixed upstream, the fix should eventually find its way into TypeScript 3.7.something release. 3.7.1 if we're lucky. I think it's safe to close this. |
@nscozzaro so...
Why are you reporting this here again? But yeah, the upstream fix is still unpublished as of yet. It's in |
I have a monorepo with the following hierarchy :
/tsconfig.json
/src/stuff.ts
/packages/adapters/tsconfig.json
/packages/adapters/src/stuff.ts
/packages/adapters/src/files/blabla.json
blabla.json is imported in some ts modules inside the adapters package.
/packages/adapters/tsconfig.json extends
/tsconfig.json
running
tsc --build
in any meaningful folder yields no error. Great !but in atom I get
blabla.json is not in project file list. Projects must list all files ...
my blabla.json is properly included in /packages/adapters/tsconfig.json
should I set any option on the atom plugin to finally get the same behavior as a direct
npx tsc --build
?thanks !
The text was updated successfully, but these errors were encountered: