I am getting up to speed with Aurelia.
I have a project set up and running based on the skeleton navigation project.
It starts up, and then tries to load welcome.js and then errors out.
It errors out on this line:
heading = 'Welcome';
If I change the line of code to
heading : 'Welcome';
Then it works.
So somehow, the ES6 classes do not seem to be loaded properly by babel.
How do I resolve this?