Our test suite began (rightly) failing when it tests that thoughtbelt can generate an app using the latest Expo. Expo 50 removed babel-plugin-module-resolver (issue thread) and now supports type aliases out of the box without it. thoughtbelt was specifying this plugin in babel.config.js for type aliases but was not installing it in the package.json for new apps. This PR removes the config for this plugin in babel.config.js.
If tests pass, I'm going to go ahead and merge, since the build is currently broken.
Our test suite began (rightly) failing when it tests that thoughtbelt can generate an app using the latest Expo. Expo 50 removed babel-plugin-module-resolver (issue thread) and now supports type aliases out of the box without it. thoughtbelt was specifying this plugin in
babel.config.js
for type aliases but was not installing it in thepackage.json
for new apps. This PR removes the config for this plugin inbabel.config.js
.If tests pass, I'm going to go ahead and merge, since the build is currently broken.