TS6133TS6133 — Declared But Never Used
A variable, import, or parameter is declared but its value is never read.
TS2740An object type is missing required properties that are expected by the target type.
You are assigning an object that lacks one or more properties required by the target type. This commonly occurs when creating objects that should implement an interface but are missing some fields.
Add the missing properties to the object. Mark properties as optional in the interface if they should not always be required. Check if you are using the correct type definition.
TS6133A variable, import, or parameter is declared but its value is never read.
TS2775A type assertion function requires all parameter types to be explicitly annotated.
TS2792TypeScript cannot resolve a module subpath because the package's exports field does not allow it.
TS2531TypeScript warns that an expression could be null at runtime, and you are using it without checking.
TS2532TypeScript warns that an object expression could be undefined at runtime.
TS2538The type of the index expression is not valid for indexing the object.