TS2345TS2345 — Argument Type Not Assignable
The argument passed to a function is not compatible with the expected parameter type.
TS2792TypeScript cannot resolve a module subpath because the package's exports field does not allow it.
The package.json of the module uses the exports field to control which subpaths are accessible. The path you are importing is not listed in the exports map. This is a Node.js package encapsulation feature.
Import from an allowed subpath listed in the package exports. Check the package documentation for supported import paths. Use moduleResolution: bundler or node16 in tsconfig to support exports field resolution.
TS2345The argument passed to a function is not compatible with the expected parameter type.
TS2589A recursive type reaches TypeScript's maximum instantiation depth.
TS4055The return type of an exported function references a private or non-exported type.
TS2305The specified export does not exist in the referenced module.
TS2612A property in a derived class conflicts with a getter/setter accessor in the base class.
TS2769None of the function overload signatures match the provided arguments.