Created
April 27, 2021 18:04
-
-
Save Pasi-D/203a4fcfcf6e8ef527e21cf88e7b7ff5 to your computer and use it in GitHub Desktop.
Medium Demo - Babel.config.js for path resolution
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
presets: ["module:metro-react-native-babel-preset"], | |
plugins: [ | |
[ | |
"module-resolver", | |
{ | |
root: ["./src"], | |
alias: { | |
navigation: "./src/components/navigation", | |
themes: "./src/assets/theme", | |
}, | |
extensions: [ | |
".ios.js", | |
".android.js", | |
".js", | |
".jsx", | |
".ios.ts", | |
".android.ts", | |
".ts", | |
".tsx", | |
".json", | |
], | |
}, | |
], | |
], | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment