TS1479TS1479 — Relative Import Needs File Extension
The relative import path requires a file extension under Node.js ESM resolution.
TS2559The source type has no properties in common with the target type.
You are assigning or passing an object whose type shares no properties with the expected type. This is a strong indicator that the wrong type is being used. TypeScript prevents this to catch likely errors.
Use the correct type that matches the expected shape. Check for typos in property names. Verify you are passing the right object to the function.
TS1479The relative import path requires a file extension under Node.js ESM resolution.
TS2705An async function requires a higher ECMAScript target to compile.
TS6133A variable, import, or parameter is declared but its value is never read.
TS2684The this context of a function does not match the expected this type.
TS2416A property in a derived class is not compatible with the same property in the base class.
TS2353An object literal contains a property that does not exist on the target type.