TS2393TS2393 — Duplicate Function Implementation
A function with the same name is implemented more than once.
TS1192The module you are importing does not have a default export.
You are using default import syntax (import X from 'module'), but the module only has named exports. The module might use export = which requires a different import syntax.
Use named imports: import { name } from 'module'. Enable esModuleInterop in tsconfig for CommonJS interop. Check the module's exports to find the correct import syntax.
TS2393A function with the same name is implemented more than once.
TS2856A @ts-check comment is used in a TypeScript file where it has no effect.
TS18048TypeScript warns that a value could be undefined and you are using it without checking.
TS2503TypeScript cannot find a namespace with the specified name.
TS2786A component's return type is not compatible with JSX element types.
TS17004JSX fragments (<>...</>) require a jsxFragmentFactory or React.Fragment to be available.