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
Maybe set prefix to empty string by default?
prefix
Not sure, but I think that would still be valid and sensible, as many modules use submodules that look like a path (eg: without leading dots/slash).
I originally had '__' to make the sub modules look 'private' but maybe that's not really necessary.
So this:
declare module 'foo/bar' {}
Instead of:
declare module '__foo/bar' {}
@poelstra What do you think?
The text was updated successfully, but these errors were encountered:
Haven't tested it, but it sounds like a plan yes.
Sorry, something went wrong.
What about this?
I use prefix = "" always ...
prefix = ""
If nobody says anything I proceed to change it.
148fa36
No branches or pull requests
Maybe set
prefix
to empty string by default?Not sure, but I think that would still be valid and sensible, as many modules use submodules that look like a path (eg: without leading dots/slash).
I originally had '__' to make the sub modules look 'private' but maybe that's not really necessary.
So this:
Instead of:
@poelstra What do you think?
The text was updated successfully, but these errors were encountered: