POWR/babel.config.js

20 lines
348 B
JavaScript
Raw Normal View History

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