venho tentando desenvolver este app em react native mas não consigo nem executa-lo, quando tento abrir tanto na web quanto no celular recebo esta mensagem"{"error":"ConfigError: Cannot resolve entry file: The main
field defined in your package.json
points to an unresolvable or non-existent path."}". Tentei mudar o caminho no campo "main" no package.json, mas continua dando o mesmo erro.
Segue o meu o arquivo package.json:
{
"name": "projeto",
"version": "1.0.0",
"description": "",
"main": "index.tsx",
"scripts": {
"test": "echo "Error: no test specified" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@expo/metro-runtime": "4.0.1",
"expo": "^52.0.26",
"mongoose": "^8.9.5",
"punycode": "^2.3.1",
"react-dom": "19.0.0",
"react-native-web": "0.19.13"
},
"devDependencies": {
"@types/react": "~19.0.7",
"typescript": "^5.7.3"
}
}