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
Expected:
const module = await import('...')
Actual:
const module = await import ('...') ^ ^
await
import
('...')
The text was updated successfully, but these errors were encountered:
Webpack uses this syntax for importing modules lazily. Not sure if this is (or going to be) a standard though.
Edit: There's actually a (stage 3) proposal for dynamic import: https://github.com/tc39/proposal-dynamic-import
Sorry, something went wrong.
@laggingreflex #1393 Partially addresses this.
Await import() support
5a63e62
Fixed beautifier#1228
7f0cfda
No branches or pull requests
Expected:
Actual:
await
andimport
import
and('...')
The text was updated successfully, but these errors were encountered: