TS2430TS2430 — Interface Incorrectly Extends Interface
An interface declares that it extends another interface but has incompatible properties.
TS2696A TypeScript-only feature is being used in a JavaScript file.
Type annotations, interfaces, enums, and other TypeScript-specific syntax cannot be used in .js files. The file might have the wrong extension or checkJs may be enabled on a file that uses TypeScript syntax.
Rename the file to .ts or .tsx if it should be a TypeScript file. Remove TypeScript-specific syntax from JavaScript files. Use JSDoc comments for type annotations in JavaScript.
TS2430An interface declares that it extends another interface but has incompatible properties.
TS5075A compiler option requires a specific moduleResolution setting to be used.
TS2742The inferred type of a declaration cannot be named without a dependency that is not available.
TS2305The specified export does not exist in the referenced module.
TS2322A value of one type cannot be assigned to a variable or property of a different, incompatible type.
TS2451A variable declared with let or const is being redeclared in the same scope.