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 i have a page and custom element files in one folder:
└───pages ig-register.html (custom element) ig-register.ts (custom element) register.html (page) register.ts (page)
I move them into subfolder
└───pages └───register ig-register.html ig-register.ts register.html register.ts
then relative paths in TypeScript file imports are updated correctly, but require tags should also be changed from
<require from="../../../common/customElements/form/ig-input"></require>
to
<require from="../../../../common/customElements/form/ig-input"></require>
The text was updated successfully, but these errors were encountered:
@atsu85 this should be covered by second part of #3, but let's keep it open so I won't forget to check
Sorry, something went wrong.
No branches or pull requests
When i have a page and custom element files in one folder:
I move them into subfolder
then relative paths in TypeScript file imports are updated correctly, but require tags should also be changed from
to
The text was updated successfully, but these errors were encountered: