When using ES6 (e.g. arrow functions or new keywords such as let or const) in your codebase and doing yarn run neutrino start, the ES6 code is not getting transpiled to ES5.
I've used this snippet to test.
const test = () => {
let a = 2;
a = 3;
return a;
};
When using ES6 (e.g. arrow functions or new keywords such as let or const) in your codebase and doing
yarn run neutrino start
, the ES6 code is not getting transpiled to ES5.I've used this snippet to test.