-
-
Notifications
You must be signed in to change notification settings - Fork 899
Closed
Description
Were dynamic imports with string literal specifiers omitted intentionally? I expected to see `dynamicImports` on `EcmaScriptModule` alongside `staticImports` to get the previously supported data. A workaround is just crawling the AST yourself:
import('dynamic_import')
{
"type": "ImportExpression",
"start": 0,
"end": 24,
"source": {
"type": "Literal",
"start": 7,
"end": 23,
"value": "dynamic_import",
"raw": "'dynamic_import'"
},
"arguments": [],
"phase": null
}Originally posted by @ryanatkn in #7788 (comment)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels