Thank you Sander! You clarified the systemJS vs. Webpack issue for me and that was very helpful. I was able to finally get the application to run (using a systemJS version 0.x.x) by adjusting the paths to the HTML files in the project. The original project had full path names in the associated TS file. In Angular 7, I gather* relative* paths are required. Once I corrected that, the application finally came to life in Angular 7.4!
I will take your advice and create an empty project A7 and move over my code to that new environment so I'm on Webpack moving forward. My only remaining problem relates to animations and I will post a separate question on that. Best regards, Harry On Monday, February 18, 2019 at 3:35:53 AM UTC-8, Sander Elias wrote: > > Hi Harry, > > You seem to have some really old tooling around, and a build that's still > centred around systemJS. From version 2 on the CLI switched to webpack. It > will make your life a lot easier if you do too. > The easy way is: Use the CLI to generate a new empty app. Add the deps yo > uneed, and compile the app, see if all works. > When it's up, you can copy the code over from your old app. Some small > refactors might be needed. > Depending on your experience, this will take a bit of time (I have done > this a couple of times, and takes me 2 to 3 hours unless there are > incompatible 3rth parties) > Once done, you are back in line with the things most people use nowadays > for angular apps. (and it's much easier to work with!) > > Regards > Sander > -- You received this message because you are subscribed to the Google Groups "Angular and AngularJS discussion" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/angular. For more options, visit https://groups.google.com/d/optout.
