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
It needs the presence of baseUrl and paths in your tsconfig to create an alias importer. baseUrl gets a default value, so this check does nothing, but paths need to exist (even if an empty object), to create the path matcher.
The easy fix is just to add the following to your tsconfig:
"compilerOptions": {
"paths": {}
}
This then allows the alias importer to resolve relative to your tsconfig, as well as relative to the file it is resolving.
Originally posted by @RMHonor in #267 (comment)
The text was updated successfully, but these errors were encountered: