We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When running TypeDoc with --plugin ./test.js I expect ./test.js relative to the cwd to be loaded.
--plugin ./test.js
./test.js
TypeDoc fails to load the file since it tries to load ./test.js relative to an internal path.
The text was updated successfully, but these errors were encountered:
fix: Plugin resolution for relative paths
6aae94e
Resolve plugin modules relative to the current path instead of the internal path. Fixes TypeStrong#1188
fix: Plugin resolution for relative paths (#1194)
13f4deb
Resolve plugin modules relative to the current path instead of the internal path. Fixes #1188
Successfully merging a pull request may close this issue.
Expected Behavior
When running TypeDoc with
--plugin ./test.js
I expect./test.js
relative to the cwd to be loaded.Actual Behavior
TypeDoc fails to load the file since it tries to load
./test.js
relative to an internal path.Environment
The text was updated successfully, but these errors were encountered: