The Problem
Most private properties of the project are using the Typescript private indicator instead of the native ES private properties (#).
ESLint private properties are better for libraries since they actually prohibit consumers from accessing the properties, even at runtime. This prevents unwanted dependencies on library internals.
Acceptance Criteria
Migrate all Typescript private properties to ESLint private properties.