React Native Debug With Visual Studio Code Not Working
i'm trying to use React Native with Visual Studio Code (which should be the best one) but it gives me an error when I try to debug. I have installed the React Native Tools exten
Solution 1:
I guess this answer is a tad late.
Your problem is that vscode could not find on your PATH references of react-native.
If you installed it using npm try the following:
npm install react-native --global
This should install it in your path. Restart vscode and you should be good to go.
Solution 2:
I think it's PATH Problem install it and use:
npm i react-native -g
Post a Comment for "React Native Debug With Visual Studio Code Not Working"