Files
calendar/companion/babel.config.js
T
Dhairyashil ShindeandGitHub 4036fb6d08 feat(companion): react compiler (#26221)
* react compiler

* remove compilation mode 'all', it will use infer by default
2025-12-27 16:06:00 -03:00

18 lines
307 B
JavaScript

module.exports = (api) => {
api.cache(true);
return {
presets: [
[
"babel-preset-expo",
{
jsxImportSource: "nativewind",
"react-compiler": {
panicThreshold: "all_errors",
},
},
],
"nativewind/babel",
],
};
};