2018-07-25 05:37:38 -04:00
|
|
|
const path = require('path');
|
2018-07-23 21:25:49 -04:00
|
|
|
const babelConfig = require('../../babel.config.js');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
...babelConfig,
|
|
|
|
plugins: [
|
|
|
|
...babelConfig.plugins,
|
2018-08-07 09:52:51 -06:00
|
|
|
'react-hot-loader/babel',
|
2018-08-07 14:46:54 -06:00
|
|
|
[
|
|
|
|
'module-resolver',
|
|
|
|
{
|
|
|
|
root: path.join(__dirname, 'src/components'),
|
|
|
|
alias: {
|
|
|
|
src: path.join(__dirname, 'src'),
|
|
|
|
Actions: path.join(__dirname, 'src/actions/'),
|
|
|
|
Constants: path.join(__dirname, 'src/constants/'),
|
|
|
|
Formats: path.join(__dirname, 'src/formats/'),
|
|
|
|
Integrations: path.join(__dirname, 'src/integrations/'),
|
|
|
|
Lib: path.join(__dirname, 'src/lib/'),
|
|
|
|
Reducers: path.join(__dirname, 'src/reducers/'),
|
|
|
|
Redux: path.join(__dirname, 'src/redux/'),
|
|
|
|
Routing: path.join(__dirname, 'src/routing/'),
|
|
|
|
ValueObjects: path.join(__dirname, 'src/valueObjects/'),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
2018-07-23 21:25:49 -04:00
|
|
|
],
|
|
|
|
};
|