Currently, I'm developing an Angular/Typescript package and testing it locally by using the ng serve
command. However, I've noticed that the transpiler seems to be applying production settings, resulting in the removal of debugger
statements and making other alterations like simplifying logic structures and converting variable names to single letters.
Is there a way to disable this behavior? Could it be controlled through a setting in the tsconfig
file?