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
As discussed in #3693 and in the dev meeting, we are using some language features which aren't supported in electron<3.
Specifically there are instances of Array.values() in (at least) the debug plugin which should be removed.
According to node.green all other ES2015 language features are supported by our current target runtimes.
It would also be extremely useful to include checks to avoid using unsupported language features in future (via tslint, node, or @types/node versions perhaps?).
The text was updated successfully, but these errors were encountered:
As discussed in #3693 and in the dev meeting, we are using some language features which aren't supported in electron<3.
Specifically there are instances of
Array.values()
in (at least) the debug plugin which should be removed.According to node.green all other ES2015 language features are supported by our current target runtimes.
It would also be extremely useful to include checks to avoid using unsupported language features in future (via tslint, node, or @types/node versions perhaps?).
The text was updated successfully, but these errors were encountered: