mirror of
https://github.com/DocNR/POWR.git
synced 2025-04-19 19:01:18 +00:00
16 lines
248 B
JavaScript
16 lines
248 B
JavaScript
![]() |
module.exports = function (api) {
|
||
|
api.cache(true);
|
||
|
return {
|
||
|
presets: ['babel-preset-expo'],
|
||
|
plugins: [
|
||
|
[
|
||
|
'module-resolver',
|
||
|
{
|
||
|
alias: {
|
||
|
'@': '.',
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
],
|
||
|
};
|
||
|
};
|