-
Notifications
You must be signed in to change notification settings - Fork 203
is tsconfig include
supported?
#1105
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
oddly enough, renaming so perhaps a fix would be relatively simple! |
I've had a quick look at this, as I need The I would really use this too and it clearly needs adding, since everybody else already supports it and afaict it's the standard way of specifying your build files now. It's a reasonable sized chunk of work to get this working with the new tsconfig and to work out how to add include to that too though, sadly. @blakeembrey - is there a plan for how these two packages are going to be reunited? Should tsconfig include/exclude parsing be readded to this package, or readded to tsconfig, or put somewhere else? |
I would prefer that support for Edit: The main reason I didn't want to dive into support |
my project relies on
include
to bring in some typings from a shared folder:this works just fine in
tsc
or inwebpack
but blows up in Atom, saying that all the typings in bothtsd.d.ts
files cannot be found. it would seem that atom-typescript is simply ignoring theinclude
option so those two extra files are never included in the build. yet every other typescript environment respects this flag, and it's part of the 2.0 standard.The text was updated successfully, but these errors were encountered: