TS1002TS1002 — Unterminated String Literal
A string literal is missing its closing quote.
TS1378Top-level await can only be used when the module option is set to a supported module system.
You are using await at the top level of a file, but the tsconfig module option does not support top-level await. It requires module set to es2022, esnext, system, or similar.
Set module to es2022 or esnext in tsconfig.json. Wrap the await in an async IIFE as a workaround. Ensure the file is treated as a module (has at least one import or export).
TS1002A string literal is missing its closing quote.
TS2532TypeScript warns that an object expression could be undefined at runtime.
TS1219Decorators require the experimentalDecorators compiler option to be enabled.
TS17004JSX fragments (<>...</>) require a jsxFragmentFactory or React.Fragment to be available.
TS2322A value of one type cannot be assigned to a variable or property of a different, incompatible type.
TS2353An object literal contains a property that does not exist on the target type.