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
should try to import from /root/foo/index.ts because it should resolve baseUrl relative to the location of base-tsconfig.json. But I suspect it is trying to import from /root/dir1/foo/index.ts since we don't take into account the location of the base tsconfig and resolve baseUrl relative to that.
The text was updated successfully, but these errors were encountered:
I suspect there is a problem for
baseUrl
when usingextends
. For example:/root/base-tsconfig.json
/root/dir1/tsconfig.json
Now this line:
should try to import from
/root/foo/index.ts
because it should resolvebaseUrl
relative to the location of base-tsconfig.json. But I suspect it is trying to import from/root/dir1/foo/index.ts
since we don't take into account the location of the base tsconfig and resolvebaseUrl
relative to that.The text was updated successfully, but these errors were encountered: