If our code defines a property named _xyz, e.g.: ``` public get _databaseId(): DatabaseId { return this._config.databaseId; } ``` Then usages of the property get minified in our build, but the actual property does not, leading to runtime errors. I had to work around this (see https://github.com/firebase/firebase-js-sdk/pull/197) to fix a customer-reported bug in the minified build.