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
For example: @mycoolscope/enum generates the import import * as enum from "@mycoolscope/enum";.
One possible workaround is to capitalise package names when the package name is a keyword. E.g. import * as Enum from "@mycoolscope/enum";. Either that, or people can just recognise when a package name is a reserved word and come up with their own workarounds.
The text was updated successfully, but these errors were encountered:
For example:
@mycoolscope/enum
generates the importimport * as enum from "@mycoolscope/enum";
.One possible workaround is to capitalise package names when the package name is a keyword. E.g.
import * as Enum from "@mycoolscope/enum";
. Either that, or people can just recognise when a package name is a reserved word and come up with their own workarounds.The text was updated successfully, but these errors were encountered: