microsoft / microsoft/TypeScript
Specialize JSX error messages for missing properties
Ouverte
@weswigham y travaille déjà.
Depuis le 25/7/2020.
Domain: Error Messages
Domain: JSX/TSX
Effort: Moderate
Experience Enhancement
Help Wanted
Rescheduled
- Langage dominant
- Go
- Étoiles
- 111k
- Forks
- 14.3k
- Merge moyen
- 1 j 19 h
- PR mergées (30 j)
- 117
Description
import React from "react";
function Foo(props: { count: number }) {
return <div>{props.count}</div>;
}
<Foo />
function Bar(props: { a: any, b: any }) {
return <div />;
}
<Bar />
function Baz(props: { a: any, b: any, c: any, d: any, e: any, f: any }) {
return <div />
}
<Baz />
Current
Property 'count' is missing in type '{}' but required in type '{ count: number; }'.
Type '{}' is missing the following properties from type '{ a: any; b: any; }': a, b
Type '{}' is missing the following properties from type '{ a: any; b: any; c: any; d: any; e: any; f: any; }': a, b, c, d, and 2 more.
Proposed
The 'count' attribute is missing, but is required for this 'Foo' tag.
This 'Bar' tag is missing the following attributes: a, b.
This 'Baz' tag is missing the following attributes: a, b, c, d, and 2 more.
Guide de contribution
Ouvrir le guide de contribution
Par où commencer
- Lisez l'issue en entier, puis le guide de contribution du projet.
- Signalez en commentaire que vous la prenez — cela évite que deux personnes fassent le même travail.
- Forkez le dépôt et travaillez sur une branche.
- Ouvrez une pull request qui référence le numéro de l'issue.
Évaluation
Cette issue n'a pas encore été évaluée.