E0156: private properties are not allowed in object literals
Classes can declare private properties with #. Object cannot have private
properties. It is a syntax error to declare a private property in an object
literal:
To fix this error, rename the properties to exclude the #:
Alternatively, use a Symbol to attach private data to an object: