When I work locally, I can see the .ts source files, but once I deploy them, they are not visible in any environment. Despite setting my sourcemap to true and configuring browserTargets for serve, it still doesn't work. Can someone help with this issue?
Below is a snippet from my angular.json file:
{
// Angular configuration here...
}
And here is a part of my package.json file:
"name": "UI-App",
"version": "0.0.0",
// Scripts and commands listed here...
}
In my local dev tool, I am able to view the src folder https://i.stack.imgur.com/rQwC1.png. However, after deploying my app, I cannot see the src folder in the devtool and Ctrl+P does not bring up any files https://i.stack.imgur.com/7xEBC.png. I have another application where the folder structure is displayed post deployment, enabling debugging. I need to replicate this behavior across all environments, not just in my local setup https://i.stack.imgur.com/gtELA.png.