lx-music-mobile-mod/babel.config.js
2023-12-07 17:04:36 +08:00

37 lines
833 B
JavaScript

module.exports = {
presets: ['module:@react-native/babel-preset'],
plugins: [
'@babel/plugin-proposal-export-namespace-from',
[
'module-resolver',
{
root: ['.'],
extensions: [
'.android.ts',
'.ios.ts',
'.android.tsx',
'.ios.tsx',
'.tsx',
'.ts',
'.android.js',
'.ios.js',
'.android.jsx',
'.ios.jsx',
'.jsx',
'.js',
'.json',
],
alias: {
'@': './src',
// '@config': './src/config',
// '@store': './src/store',
// '@components': './src/components',
// '@navigation': './src/navigation',
// '@screens': './src/screens',
// '@theme': './src/theme',
},
},
],
],
}