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
There's one big problem.
namespace
via. https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c#how-can-i-make-my-typescript-project-output-esm
The text was updated successfully, but these errors were encountered:
One easy option would be to prefix every type / interface name with the namespace name. So for example
namespace Responses { export type BadRequest = any; }
becomes
export type ResponsesBadRequest = any;
That would not necessarly guarantee uniquenesss but should work for most setups.
Sorry, something went wrong.
Thanks for the good ideas. 👍 The name will be much longer, but I think I can guarantee uniqueness.
No branches or pull requests
There's one big problem.
namespace
from the generated results. In that case, how do we guarantee the uniqueness of the output type names?via. https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c#how-can-i-make-my-typescript-project-output-esm
The text was updated successfully, but these errors were encountered: