-
Notifications
You must be signed in to change notification settings - Fork 202
File "not included in the TypeScript compilation context" error on valid tsconfig? #1132
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
Oh, I forgot to mention I'm on the ~latest version of everything at the time of writing: Atom-TypeScript 10.1.12, Atom 1.12.2, TypeScript 2.0.9, Node 6.9.1, etc. |
I'm seeing the identical behavior. It doesn't seem to recognize the |
Same issue here. |
I had this issue after re-naming a couple files, which made several import statements invalid on other files. After correcting the import statements I was still getting the errors, but when I saved and restarted Atom it was fine. |
Same issue here, I make sure to include the @types but it gives me the same error:
|
I experience the similar limitation and I find it quite annoying |
Is there no fix for this? Atom-Typescript keeps complaining that I didn't have my specs files (jasmine) in the context. |
are here any plan to accomplish that issue? I have project with different files that describe same (a little different) types. /tsconfig.json and I got error: my tsconfig: |
+1 same issue with using "include" |
Should be fixed in the latest version (v11) 😄 Please reopen if there's an issue. |
Hi there,
Great work overall on the plugin! I've been using it for a couple of months now and overall it's very helpful. I've just been fighting with some issues, like #1054 (comment) and this one:
On a new project, I'm getting this error even though
tsc
does include the file in question.Here's what my project looks like:
Here's what my
tsconfig.json
looks like:As you notice, I only specify
exclude
, not alsofiles
orinclude
. According to the TypeScript docs, this is no problem:https://www.typescriptlang.org/docs/handbook/tsconfig-json.html#details
The file in question that's giving me this Atom-TypeScript error is
test/types.ts
.Any ideas what might be causing this? Thanks, and keep up the great work again.
The text was updated successfully, but these errors were encountered: