E0290: assignment-assertion fields cannot have default values
In TypeScript, !
after a field name indicates a definite assignment
assertion. It is a syntax error to initialize such a field:
To fix this error, remove the !
:
Alternatively, remove the initializer:
Introduced in quick-lint-js version 2.10.0.