a8a0b7db1b
* wip * wip * wip * format * wip(mobile): lint and format * cleanup * nits * nits * idiomatic react * nit * format all root files
11 lines
231 B
JavaScript
11 lines
231 B
JavaScript
module.exports = function (api) {
|
|
api.cache(true);
|
|
return {
|
|
presets: [
|
|
['babel-preset-expo', { jsxImportSource: 'nativewind' }],
|
|
'nativewind/babel',
|
|
],
|
|
plugins: ['react-native-worklets/plugin'],
|
|
};
|
|
};
|