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
{{ message }}
This repository was archived by the owner on Oct 28, 2020. It is now read-only.
Allow validating code written in ES5 EXCEPT module imports/exports.
Why Is This Update Needed?
We're transpiling our code to ES5 but still use ES modules to allow for tree-shaking.
We wanted to make sure our generated code is ES5 with the exception of the module syntax which will be handled by webpack in consuming projects (talking about an internal lib).
We need to somehow ignore import/export syntax while still ES5-check our code, if possible/makes sense to you guys.