E0252: enum member needs initializer; computed value disables enum autoincrement
In a TypeScript enum, if there is a member with a computed value, the following member must have an explicit value. It is an error to write an autoincrement enum member (i.e. one without a value) after a member with a computed value:
To fix this error, write a value for the enum member:
Alternatively, move the member with a computed value after the autoincrement members:
Introduced in quick-lint-js version 2.7.0.