TS2306TS2306 — Not a Module
The file referenced in an import statement is not recognized as a module.
TS2451A variable declared with let or const is being redeclared in the same scope.
You have two let or const declarations with the same name in the same block scope. This can also happen when a script-mode file declares a variable that conflicts with a global declaration.
Rename one of the variables. Convert the file to a module by adding an export statement, which isolates its scope. Use var if you intentionally want to redeclare (though this is not recommended).
TS2306The file referenced in an import statement is not recognized as a module.
TS2353An object literal passed directly to a function contains properties not in the expected type.
TS7005A variable has an implicit any type because TypeScript cannot infer its type.
TS2810A JSX attribute expected a boolean value but received a different type.
TS1219Decorators require the experimentalDecorators compiler option to be enabled.
TS2538The type of the index expression is not valid for indexing the object.