-
Notifications
You must be signed in to change notification settings - Fork 7
/
babel.config.js
56 lines (55 loc) · 2.07 KB
/
babel.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
module.exports = {
presets: [
[
"babel-preset-expo",
// Prevents unnecessary babel transform BigInt to number for Hermes.
{ unstable_transformProfile: "hermes-stable" },
],
],
plugins: [
["@babel/plugin-proposal-decorators", { version: "legacy" }],
"@babel/plugin-proposal-export-namespace-from",
"@babel/plugin-transform-flow-strip-types", // For privy (phone country selector)
["@babel/plugin-transform-class-properties", { loose: true }], // For privy
["@babel/plugin-transform-private-methods", { loose: true }], // For privy
[
"module-resolver",
{
alias: {
"fast-text-encoding": "text-encoding",
// crypto: "react-native-quick-crypto",
"react-native-sqlite-storage": "@op-engineering/op-sqlite",
crypto: "crypto-browserify",
// This entrypoint mapping is done in @xmtp/user-preferences-bindings-wasm's "exports" in package.json
// but we don't want to enable unstable_enablePackageExports for now in metro.config.js
"@xmtp/user-preferences-bindings-wasm/web":
"@xmtp/user-preferences-bindings-wasm/dist/web/user_preferences_bindings_wasm",
// Same for @web3modal/ethers5
"@web3modal/ethers5/react":
"@web3modal/ethers5/dist/esm/exports/react.js",
"@web3modal/scaffold-utils/ethers":
"@web3modal/scaffold-utils/dist/esm/exports/ethers.js",
"react-native-webview": "react-native-webview/src/index.ts",
// Folder aliases
"@components": "./components",
"@containers": "./containers",
"@data": "./data",
"@hooks": "./hooks",
"@i18n": "./i18n",
"@queries": "./queries",
"@screens": "./screens",
"@styles": "./styles",
"@utils": "./utils",
"@theme": "./theme",
"@design-system": "./design-system",
},
},
],
"react-native-reanimated/plugin",
],
env: {
production: {
plugins: ["transform-remove-console", "react-native-paper/babel"],
},
},
};