so basically, I created my React Native with Typescript using the commandline in RN homepage:npx react-native init MyApp --template react-native-template-typescript
After that, I ran the project and it was built successfully.However, when I added the path alias to import my file, it threw an error: Unable to resolve module #folder/file from ... could not be found within the project or in these directories: node_modules
I've already followed some tutorials and bug resolves on Google but I've met no luck.
Here is my .babelrc
file (I tried to change the file from babel.config.js to .babelrc as some resolver said but it still didn't work)
{"presets": ["module:metro-react-native-babel-preset"],"plugins": [ ["module-resolver", {"root": ["./src"],"extensions": [".js",".jsx",".ts",".tsx",".android.js",".android.tsx",".ios.js",".ios.tsx" ],"alias": {"#src/*": ["./src/*" ],"#configs/*": ["./src/config/*" ],"#actions/*": ["./src/redux/actions/*" ],"#reducers/*": ["./src/redux/reducers/*" ],"#store/*": ["./src/redux/store/*" ] } } ] ]}
tsconfig.json
{"compilerOptions": { /* Basic Options */"target": "esnext", "module": "commonjs","lib": ["ES2017","DOM","ES2015","ES2015.Promise" ], "allowJs": true, "jsx": "react-native","noEmit": true, "incremental": true,"importHelpers": true,"isolatedModules": true,"strict": true,"moduleResolution": "node","baseUrl": ".", "paths": {"#src/*": ["src/*" ],"#configs/*": ["src/config/*" ],"#actions/*": ["src/redux/actions/*" ],"#reducers/*": ["src/redux/reducers/*" ],"#store/*": ["src/redux/store/*" ] }, "types": ["jest"],"allowSyntheticDefaultImports": true, "esModuleInterop": true, "skipLibCheck": false, "resolveJsonModule": true },"exclude": ["node_modules","babel.config.js","metro.config.js","jest.config.js" ]}
My folders and files structure
├───assets├───components├───config│ constants.ts│└───redux├───actions│ index.ts│ stateActions.ts│├───reducers│ index.ts│ stateReducer.ts│└───store index.ts
Really looking forward to receive you guys answers. Thank you so much
P/s: if you dont mind, please take a look at my repository:https://github.com/NotJackieTruong/rn_boilerplate_by_me