the tswhy logo: a question mark in a box

tswhy‽

A community effort to enrich TypeScript diagnostics.

Editing TS1061:

All diagnostics and fixes are authored in markdown. Propose any changes by editing the markdown. Additional fixes can be added. A preview of the rendered diagnostic will update when changes are made.

Once all proposed changes are made, the Propose button will submit the information and confirm raising the PR.

TS1061

Enum member must have initializer.

When an enum contains string members, TypeScript cannot infer the value of members. Therefore the following will error:

enum A {
  a = "1",
  b,
}

Fix: Provide an initializer for each member.

Explicitly initialize the member:

enum A {
  a = "1",
  b = "2",
}