Which @angular/* package(s) are relevant/related to the feature request?
No response
Description
Actually Angular after build preverve the name of private field, eg. this service:
class MyService extends BaseService {
constructor(
private translationService: TranslationService,
private authService: AuthService) {
super()
}
getActiveLang() {
return this.translationService.getActiveLang()
}
getUserMail() {
const user = this.authService.currentUser();
return user ? user .email : null
}
}
After build become, eg.:
class u extends w.PV {
constructor(_, t) {
super(),
this.translationService = _,
this.authService = t
}
getActiveLang() {
return this.translationService.getActiveLang()
}
getUserMail() {
const _ = this.authService.currentUser();
return _ ? _.email : null
}
}
Private properties translationService, authService aren't minify/uglify, the expected output is eg.:
class u extends w.PV {
constructor(_, t) {
super(),
this._ = _,
this.t = t
}
getActiveLang() {
return this.t.getActiveLang()
}
getUserMail() {
const _ = this._.currentUser();
return _ ? _.email : null
}
}
This happen because instance properties can leak into basically anywhere, where the minifier is not guaranteed to have applied a consistent minification, eg.:
window.svc = new MyService();
and then some global script uses window.svc.translationService to be available. The private marker does not prevent this; it is a TypeScript only keyword that minifiers don't see.
Some optimizers are capable of this minification, like Closure Compiler using Advanced optimizations, but you have to follow its strict rules to make everything work that way. Angular does not integrate/support Closure Compiler though.
All class members declared as protected/private can be uglified. However, since the uglification made by Terser works on .js file there can be no distinction between public and protected/private members.
Proposed solution
My suggestion is to prefix after Typescript/Angular-cli build the protected/private members with an underscore or something alike, eg.:
class u extends w.PV {
constructor(_, t) {
super(),
this._translationService = _,
this._authService = t
}
getActiveLang() {
return this._translationService.getActiveLang()
}
getUserMail() {
const _ = this._authService.currentUser();
return _ ? _.email : null
}
}
and pass an option to terser telling it to uglify only members which start with underscore.
Alternatives considered
writing small name for private field
Which @angular/* package(s) are relevant/related to the feature request?
No response
Description
Actually Angular after build preverve the name of private field, eg. this service:
After build become, eg.:
Private properties
translationService,authServicearen't minify/uglify, the expected output is eg.:This happen because instance properties can leak into basically anywhere, where the minifier is not guaranteed to have applied a consistent minification, eg.:
and then some global script uses
window.svc.translationServiceto be available. The private marker does not prevent this; it is a TypeScript only keyword that minifiers don't see.Some optimizers are capable of this minification, like Closure Compiler using Advanced optimizations, but you have to follow its strict rules to make everything work that way. Angular does not integrate/support Closure Compiler though.
All class members declared as protected/private can be uglified. However, since the uglification made by Terser works on .js file there can be no distinction between public and protected/private members.
Proposed solution
My suggestion is to prefix after Typescript/Angular-cli build the protected/private members with an underscore or something alike, eg.:
and pass an option to terser telling it to uglify only members which start with underscore.
Alternatives considered
writing small name for private field