Skip to content

Instantly share code, notes, and snippets.

@mp5maker
mp5maker / babel.config.js
Created December 20, 2020 10:12
Babel Configuration for the Expo App
const path = require("path");
const paths = {
"@web": path.join(__dirname, "..", "web-app/src"),
};
module.exports = function (api) {
api.cache(true);
return {
presets: ["babel-preset-expo"],
plugins: [