We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
swc transpiler needs to be passed necessary flags to preserve import assertions. Currently, it omits them from emit, which is wrong.
Must pass two flags:
{ jsc: { parser: { importAssertions: true }, experimental: { keepImportAssertions: true } } }
Reported in #1810.
Will be fixed by #1802