-
-
Notifications
You must be signed in to change notification settings - Fork 737
Searching for lib files in root directory #464
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
@aciccarello That should be passing through to Node to look for them in the proper location. I'll dig into this further and see if I can reproduce it. |
I setup a quick test project on macOS with the same tsconfig.json and ran typedoc with the same args and got no errors. I setup the same thing on Windows and could reproduce, so it initially seems to be Windows-specific. |
nicknisi
added a commit
to nicknisi/typedoc
that referenced
this issue
Apr 2, 2017
Remove use of Path.join in the getDefaultLibFileName method that, on Windows, converts '/' in paths to '\'. TypeScript uses '/' internally so it has trouble locating the default lib location when this is reversed. Fixes TypeStrong#464 where lib directory cannot be found on Windows.
nicknisi
added a commit
to nicknisi/typedoc
that referenced
this issue
Apr 2, 2017
Remove use of Path.join in the getDefaultLibFileName method that, on Windows, converts '/' in paths to '\'. TypeScript uses '/' internally so it has trouble locating the default lib location when this is reversed. Fixes TypeStrong#464 where lib directory cannot be found on Windows.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am running the latest (0.5.9) version of typedoc. Node version 7.8.0
Output:
My
tsconfig.json
file is the following:Please let me know if any further information is needed, for now I've just swapped
arr.includes
for!!~arr.indexOf
, though I'd much rather use the readable alternative.The text was updated successfully, but these errors were encountered: