mirror of
https://github.com/DocNR/POWR.git
synced 2025-04-19 19:01:18 +00:00
20 lines
348 B
JavaScript
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: {
|
|
'@': './',
|
|
},
|
|
},
|
|
],
|
|
],
|
|
};
|
|
}; |