TS2339TS2339 — Property Does Not Exist on React Component Props
A prop is passed to a React component that does not accept it in its type definition.
TS1375The await keyword is used inside a function that is not marked as async.
The await keyword can only be used inside async functions or at the top level of modules with a module target that supports it. The enclosing function is not declared with the async keyword.
Add the async keyword to the enclosing function. If you need to use await at the top level, ensure your module configuration supports top-level await. Alternatively, use .then() to handle promises without await.
TS2339A prop is passed to a React component that does not accept it in its type definition.
TS1192The module you are importing does not have a default export.
TS1378Top-level await can only be used when the module option is set to a supported module system.
TS1479The relative import path requires a file extension under Node.js ESM resolution.
TS1003TypeScript expected an identifier (variable name, function name, etc.) but found something else.
TS2612A property in a derived class conflicts with a getter/setter accessor in the base class.