I'm used Chris Hammond's VS 2017 templates to start me off with a SPA module and then changed it to handle an Angular app.
It's easy enough to pass variables to View.html, Edit.html and Settings.html via tokens which is great, but with an Angular app the HTML views are precompiled so this won't work.
What I can do is to populate a local variable, or set of variables with all the values I need, but then there's question of how to pass these variables into the Angular app.
So far I've used local storage to do this, but that seems dirty.
Anyone have a better idea?