Files
info-tager-mobile/babel.config.js
Samandar Turgunboyev 124798419b fitst commit
2026-01-28 18:26:50 +05:00

23 lines
392 B
JavaScript

module.exports = function (api) {
api.cache(true);
return {
presets: [['babel-preset-expo'], 'nativewind/babel'],
plugins: [
[
'module-resolver',
{
root: ['./'],
alias: {
'@': './',
'tailwind.config': './tailwind.config.js',
},
},
],
'react-native-worklets/plugin',
],
};
};