mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-04-22 21:17:55 +00:00
17 lines
281 B
Plaintext
17 lines
281 B
Plaintext
module.exports = function (api) {
|
|
api.cache(true);
|
|
return {
|
|
presets: [
|
|
[
|
|
'babel-preset-expo',
|
|
{
|
|
unstable_transformImportMeta: true,
|
|
},
|
|
],
|
|
],
|
|
plugins: [
|
|
'@babel/plugin-transform-class-static-block',
|
|
],
|
|
};
|
|
};
|