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
While working on #403, it became clear that a large amount of overhead to convert one file to typescript will be converting each spot where that module is used to an import statement, or use require(...).default. This is less than ideal. So we would like to experiment with converting all require statements over to imports.
This also boosts typescript support since require() often provides the import as an "any" type.
The text was updated successfully, but these errors were encountered:
While working on #403, it became clear that a large amount of overhead to convert one file to typescript will be converting each spot where that module is used to an import statement, or use
require(...).default
. This is less than ideal. So we would like to experiment with converting all require statements over to imports.This also boosts typescript support since require() often provides the import as an "any" type.
The text was updated successfully, but these errors were encountered: