Skip to content

Instantly share code, notes, and snippets.

@Pasi-D
Created April 27, 2021 18:04
Show Gist options
  • Save Pasi-D/203a4fcfcf6e8ef527e21cf88e7b7ff5 to your computer and use it in GitHub Desktop.
Save Pasi-D/203a4fcfcf6e8ef527e21cf88e7b7ff5 to your computer and use it in GitHub Desktop.
Medium Demo - Babel.config.js for path resolution
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