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
I'm getting this error when I upgrade from 13.1.1 to 13.2.0 (newer versions don't fix it):
Error: Cannot find module './paramType' from '/.../packages/library/src/support' at /.../node_modules/browser-resolve/node_modules/resolve/lib/async.js:55:21 at load (/.../node_modules/browser-resolve/node_modules/resolve/lib/async.js:69:43) at onex (/.../node_modules/browser-resolve/node_modules/resolve/lib/async.js:92:31) at /.../node_modules/browser-resolve/node_modules/resolve/lib/async.js:22:47
src/support/index.ts is a barrel file and since it's not listed in the path as index.ts, I'm guessing the path resolution is broken for barrel files:
export*from'./paramType';
I've tried this with 13.2.5, where it fails. It works with 13.1.1 if I use my old yarn.lock file, but if I install 13.2.0 and then go back to 13.1.1 it fails, so I'm assuming this is some dependency issue. browser-resolve is still the same version though, so maybe it has to do with module-deps-sortable?
The text was updated successfully, but these errors were encountered:
@SantoJambit Since 13.2.0 version code analyze on imports and exports but it is still has issues with extensions. I guess that your file paramType has ts extension. Is it right?
I'm getting this error when I upgrade from 13.1.1 to 13.2.0 (newer versions don't fix it):
src/support/index.ts is a barrel file and since it's not listed in the path as index.ts, I'm guessing the path resolution is broken for barrel files:
I've tried this with 13.2.5, where it fails. It works with 13.1.1 if I use my old yarn.lock file, but if I install 13.2.0 and then go back to 13.1.1 it fails, so I'm assuming this is some dependency issue. browser-resolve is still the same version though, so maybe it has to do with module-deps-sortable?
The text was updated successfully, but these errors were encountered: