We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If we include a package.json we are able to use absolute paths. It would be so awesome if this extension was able to do intelli sense for that! Here is an article that explains the package.json absolute path trick - https://medium.com/@davidjwoody/how-to-use-absolute-paths-in-react-native-6b06ae3f65d1
The text was updated successfully, but these errors were encountered:
medium.com article
tldr: create packages for your modules
modules/x/package.json
{ "name": "x" }
somewhere/else/index.js
-import x from "../../modules/x/index.js" +import x from "x/index.js"
Sorry, something went wrong.
No branches or pull requests
If we include a package.json we are able to use absolute paths. It would be so awesome if this extension was able to do intelli sense for that! Here is an article that explains the package.json absolute path trick - https://medium.com/@davidjwoody/how-to-use-absolute-paths-in-react-native-6b06ae3f65d1
The text was updated successfully, but these errors were encountered: