Consider this scenario:
const hidden = Symbol()
export class Foo {
static [hidden] = 'I prefer no one to modify this'
}
The compiler throws an error TS4028: Public static property '[hidden]' of exported class has or is using private name 'hidden'.
I am aware that 'hidden' is intended to be private. I simply do not want to export it.
Is there a way to suppress this error message?