POWR/babel.config.js
2025-02-09 20:38:38 -05:00

20 lines
348 B
JavaScript

module.exports = function (api) {
api.cache(true);
return {
presets: [
['babel-preset-expo', { jsxImportSource: 'nativewind' }],
'nativewind/babel'
],
plugins: [
[
'module-resolver',
{
root: ['.'],
alias: {
'@': './',
},
},
],
],
};
};