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
When importing two files e.g. src/index.ts and src\index.ts on a Windows system, both paths refer to the same file but are literally different, thus two different copies of the same file are emitted.
The easiest way to work around this is to wrap all returned paths from resolvers in a path.normalize() call.
The text was updated successfully, but these errors were encountered:
When importing two files e.g.
src/index.ts
andsrc\index.ts
on a Windows system, both paths refer to the same file but are literally different, thus two different copies of the same file are emitted.The easiest way to work around this is to wrap all returned paths from resolvers in a
path.normalize()
call.The text was updated successfully, but these errors were encountered: