-
Notifications
You must be signed in to change notification settings - Fork 238
New issue
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
Trouble with "export async function"? #136
Comments
It indeed looks like this particular syntax causes problems. WorkaroundI removed the Instead of export async function myFunc () {
...
} I now write async function myFunc () {
...
}
export {myFunc}; |
Thank you for the detailed report. A fix will be available in the coming days. |
mkellner
pushed a commit
that referenced
this issue
Mar 11, 2019
Fixed in 5f92352 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Output
I'll just show errors for one file. There are several. but the location always is an
export async function
line.Code
In module-importer, starting from line 34:
The text was updated successfully, but these errors were encountered: