Files
jellyfin-audio-player/babel.config.js

31 lines
758 B
JavaScript
Raw Normal View History

2020-06-16 17:51:51 +02:00
module.exports = {
2024-01-31 22:10:51 +01:00
presets: ['module:@react-native/babel-preset'],
plugins: [
[
'module-resolver',
{
2020-11-02 22:43:11 +01:00
root: ['.'],
extensions: [
'.ios.ts',
'.android.ts',
'.ts',
'.ios.tsx',
'.android.tsx',
'.tsx',
'.jsx',
'.js',
'.json',
],
alias: {
2023-06-19 23:03:17 +02:00
'@': './src',
}
}
2021-01-29 00:47:17 +01:00
],
[
'module:react-native-dotenv'
],
2022-11-27 21:07:32 +01:00
'react-native-reanimated/plugin',
'@babel/plugin-proposal-numeric-separator'
]
2020-06-16 17:51:51 +02:00
};