After upgrading from Angular version 8 to version 15, I've encountered an issue where the debugger is not functioning in any browser's developer tools. Can anyone provide some insight on what could be causing this problem? Is it related to the source-map?
Here is my package.json:
"dependencies": {
(list of dependencies here)
},
"devDependencies": {
(list of devDependencies here)
}
And here is my package-lock.json:
"dependencies": {
(list of dependencies here)
},
"devDependencies": {
(list of devDependencies here)
}
I am hoping to resolve this issue and have the debugger hit the breakpoint successfully.