Currently engaged in developing an angular application that involves working with multiple environments, I am encountering difficulties while attempting to set up debugging points using debugger;
For compiling node_modules and running the server, I use the command
ng serve -o --webconfiguration==qa
However, when I use ng serve -o
, the debug points are hit successfully.
How can I configure my application to hit debug points while specifically working with the QA Environment?
Providing my configuration details -
Angular CLI Version - 7.3.8
Node Version - 10.15.3
NPM - 6.4.1
TypeScript - 3.1.6
Details from angular.json
{
// Angular JSON configuration code here
}
Details from tsconfig.json
{
// tsconfig.json details here
}
Expecting the debugger;
statement to function as desired. Any assistance on this matter would be highly appreciated.
Thank you