After updating to the latest version of angular I notice console logs no longer display the source file names and line numbers of the output.
Instead of something like
Hello World login.component.ts: 34: 5
I will now only see something like
"Hello World main.js:1"
At first, I thought it was building the project in prod mode so the files were being bundled together (since they are outputting in js now), but I'm pretty sure I'm compiling in dev mode and not actually building anything (isDevmode is true).
I am running my project with npm start
or ng serve
(with assigned port).
I haven't seen much on other web resources regarding this, so can anyone share their insight if they have some? Thanks.