dashboard
repositories
activity
search
login
APPS
/
PAILot
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
feat: explicit session addressing + toast queue + solid toast styling
Matthias Nott
2026-03-08
4c266155785aad5050ebff7211e3d5f9e15c3238
[APPS/PAILot.git]
/
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
module.exports = function (api) {
api.cache(true);
return {
presets: [
["babel-preset-expo", { jsxImportSource: "nativewind" }],
"nativewind/babel",
],
plugins: [
[
"module-resolver",
{
alias: {
"@components": "./components",
"@contexts": "./contexts",
"@services": "./services",
"@core": "./core",
"@types": "./types",
},
},
],
"react-native-reanimated/plugin", // Must be LAST
],
};
};