Created
November 30, 2021 20:58
-
-
Save ah584d/c5d5e4028b7e8346435531832e504bd1 to your computer and use it in GitHub Desktop.
babel.config.json
This file contains hidden or 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
| { | |
| "presets": ["module:metro-react-native-babel-preset", "@babel/preset-typescript", "@babel/preset-react"], | |
| "parserOpts": { "strictMode": true }, | |
| "plugins": [ | |
| [ | |
| "module-resolver", | |
| { | |
| "root": ["./"], | |
| "extensions": [".ios.js", ".android.js", ".js", ".ts", ".tsx", ".json"], | |
| "alias": { | |
| "@lodash": ["./src/common/utils/lodash/lodashES.ts"], | |
| } | |
| } | |
| ] | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment