Ask Your Question
2

What does the term excessive property checking in Typescript refer to?

asked 2023-06-17 16:03:40 +0000

devzero gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2023-06-17 16:11:01 +0000

lalupa gravatar image

Excessive property checking in Typescript refers to a situation where the Typescript compiler raises an error for an object that has extra properties not defined in the interface or type. This happens when the compiler option "noImplicitAny" is set to true, and the object is not explicitly typed. In this case, Typescript assumes that the object has type "any" and raises an error for extra properties. To avoid this, the object should be explicitly typed, or the "noImplicitAny" option should be set to false.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-06-17 16:03:40 +0000

Seen: 9 times

Last updated: Jun 17 '23