I have a project from a ‘fuse angular template’ hoping to quick start development and not have to write a bunch of components.
- clone repo https://github.com/deanhiller/ts-prototype
- cd client
- npm install
- npm run dev (browser opens)
- open dev tools console
and when GUI shows, you click sign in and I have it coded to throw and log an exception. The stack trace is javascript one not a typescript one 🙁 🙁 . When I do the new project in angular (same version 18), it works just fine. I tried diffing these and porting but in doing so, the stack trace stops working along the way.
- My main question is what is the process for debugging why this is not working?
- How does javascript sourcemap AND typescript sourcemap works? should I see the intermediary files somewhere that I can check on?
This has been a large time suck and starting to pull at straws and looking for a hint that might guide me down the right path.
I have tried base react new project and comparisons and merging to no avail.