mirror of
https://github.com/tooot-app/app
synced 2025-01-10 08:33:45 +01:00
18 lines
297 B
JavaScript
18 lines
297 B
JavaScript
module.exports = function (api) {
|
|
api.cache(true)
|
|
return {
|
|
presets: ['babel-preset-expo'],
|
|
plugins: [
|
|
['@babel/plugin-proposal-optional-chaining'],
|
|
[
|
|
'module-resolver',
|
|
{
|
|
alias: {
|
|
src: './src'
|
|
}
|
|
}
|
|
]
|
|
]
|
|
}
|
|
}
|