diff --git a/.changeset/lovely-emus-wave.md b/.changeset/lovely-emus-wave.md new file mode 100644 index 0000000..9d3684f --- /dev/null +++ b/.changeset/lovely-emus-wave.md @@ -0,0 +1,5 @@ +--- +"create-better-t-stack": patch +--- + +Use CommonJS exports in babel config diff --git a/apps/cli/templates/frontend/native/babel.config.js b/apps/cli/templates/frontend/native/babel.config.js index 41f1cc0..8f81752 100644 --- a/apps/cli/templates/frontend/native/babel.config.js +++ b/apps/cli/templates/frontend/native/babel.config.js @@ -1,4 +1,4 @@ -export default function (api) { +module.exports = function (api) { api.cache(true); const plugins = [];