You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The generation of typescript type declarations fails: npx tsc. The errors can be revealed by running the existing type-check script for the frontend codebase:
The errors above ensure that editors (such as vscode) are littered with "red underlined code" because of incomplete type information. This undercuts the advantage of using typescript in the first place.
Motivation
Typescript enforces type safety, but it looks like this feature is a ignored in a lot of files. A lot can be fixed quickly by correcting the import paths.
Your Contribution
I could prepare a PR if core developers have no time to have a look at this. Let me know.
The text was updated successfully, but these errors were encountered:
Feature Request
The generation of typescript type declarations fails:
npx tsc
. The errors can be revealed by running the existing type-check script for the frontend codebase:npm run type-check
gives:
The errors above ensure that editors (such as vscode) are littered with "red underlined code" because of incomplete type information. This undercuts the advantage of using typescript in the first place.
Motivation
Typescript enforces type safety, but it looks like this feature is a ignored in a lot of files. A lot can be fixed quickly by correcting the import paths.
Your Contribution
I could prepare a PR if core developers have no time to have a look at this. Let me know.
The text was updated successfully, but these errors were encountered: