-
Notifications
You must be signed in to change notification settings - Fork 75
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
Usage of tsconfig.json field rootDir #148
Comments
Could you give me an example of your hierarchy so that I can check this out? That is, this type of thing:
It's possible that this is fixed in #171. I'd like to make sure before I do the next release. |
The I am currently working with the described workarround to create an empty ts file at the whished root. So my workarround folder sturcture looks like the following:
|
Thanks. I'll check it out. |
I think that the
rootDir
field of the tsconfig.json is currently not used by tsify.A problem only exists when you use an es5 or es6 entry file for browserify and have no ts file in the same directory. The ts fiels will be recognized by tsify but are not cahced with the right folder structure so that they are not found by
getCompiledFile
.The workaround is creating an empty ts file in the directory of the browserify entry file.
The text was updated successfully, but these errors were encountered: