Blame · Line-by-line history
babel.config.js
Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.
| 5c83ccc | 1 | module.exports = function (api) { |
| 2 | api.cache(true); | |
| 3 | return { | |
| 4 | presets: ['babel-preset-expo'], | |
| 5 | plugins: [ | |
| 6 | [ | |
| 7 | 'module-resolver', | |
| 8 | { | |
| 9 | root: ['./src'], | |
| 10 | alias: { | |
| 11 | '@': './src', | |
| 12 | }, | |
| 13 | }, | |
| 14 | ], | |
| 15 | ], | |
| 16 | }; | |
| 17 | }; |