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
Although it doesn't break the process, it is not really correct to install the lib package as a dependency, when you found import LocalLib from "lib/LocalLib" string.
Not saying about the invalid "/lib": "latest" when the import path is absolute.
Also, (this is probably a different, yet, very related, request), I'd like to be able to include by name, so I use jsconfig.json, where I can set "rootDirs": ["./lib"] and then import LocalLib from "LocalLib" which currently lead to another error in the console about package Not found.
The text was updated successfully, but these errors were encountered:
Although it doesn't break the process, it is not really correct to install the
lib
package as a dependency, when you foundimport LocalLib from "lib/LocalLib"
string.Not saying about the invalid
"/lib": "latest"
when the import path is absolute.Also, (this is probably a different, yet, very related, request), I'd like to be able to include by name, so I use
jsconfig.json
, where I can set"rootDirs": ["./lib"]
and thenimport LocalLib from "LocalLib"
which currently lead to another error in the console aboutpackage Not found
.The text was updated successfully, but these errors were encountered: