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
System.getImportMap()
SystemJS 6.15 introduced a new API to expose its import map:
systemjs/systemjs#2484
This could be conditionally enabled in a implementation like bellow, so it wouldn't force people to upgrade to 6.15:
if (typeof System.getImportMap === 'function') { return System.getImportMap(); } else { return fetch(...); }
The text was updated successfully, but these errors were encountered:
Avoiding the network request would be nice - would you be willing to fund my work on this? I charge $250/hr, but bill to the minute.
Sorry, something went wrong.
No branches or pull requests
SystemJS 6.15 introduced a new API to expose its import map:
systemjs/systemjs#2484
This could be conditionally enabled in a implementation like bellow, so it wouldn't force people to upgrade to 6.15:
The text was updated successfully, but these errors were encountered: