You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CommonJs supports exports keyed with arbitrary strings which are not valid identifiers:
exports["unsigned short"] = "something"
This means the webidl-conversions package results in the following error due to invalid iitm code:
file:///Users/tim/Documents/Repositories/import-in-the-middle/test/check-exports/node_modules/webidl-conversions/lib/index.js?iitm=true:69
let $unsigned short = _.unsigned short
^^^^^
SyntaxError: Unexpected identifier 'short'
at ModuleLoader.moduleStrategy (node:internal/modules/esm/translators:118:18)
at callTranslator (node:internal/modules/esm/loader:273:14)
at ModuleLoader.moduleProvider (node:internal/modules/esm/loader:278:30)
The text was updated successfully, but these errors were encountered:
CommonJs supports exports keyed with arbitrary strings which are not valid identifiers:
exports["unsigned short"] = "something"
This means the
webidl-conversions
package results in the following error due to invalid iitm code:The text was updated successfully, but these errors were encountered: