TS1479TS1479 — Relative Import Needs File Extension
The relative import path requires a file extension under Node.js ESM resolution.
TS7005A variable has an implicit any type because TypeScript cannot infer its type.
With noImplicitAny enabled, TypeScript requires all variables to have a known type. The variable was declared without a type annotation and without an initializer that would allow type inference.
Add an explicit type annotation to the variable. Initialize the variable with a value so TypeScript can infer the type. Use a more specific type instead of any.
TS1479The relative import path requires a file extension under Node.js ESM resolution.
TS1131TypeScript expected a property declaration or method signature but found something else.
TS17004JSX fragments (<>...</>) require a jsxFragmentFactory or React.Fragment to be available.
TS2420A class declares that it implements an interface but does not provide all required members.
TS1270A decorator is placed before the export keyword, which is not allowed.
TS2684The this context of a function does not match the expected this type.