UNPKG

react-native-template-zygor

Version:

Template para projetos em React Native, com Estrutura de Pastas customizada, Estilos Globais, ESLint + Prettier + Babel Plugin Root Import, React Navigation, Reactotron e Axios configurados.

17 lines (15 loc) 341 B
const path = require('path'); module.exports = { entry: './src/index.js', output: { filename: 'bundle.js', path: path.resolve(__dirname, './'), }, resolve: { alias: { root: path.resolve(__dirname, './src'), '~': path.resolve(__dirname, './src'), '#': path.resolve(__dirname, './assets') }, }, };