This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-08-03 08:46:49 -07:00
|
|
|
const { resolve } = require('path');
|
|
|
|
|
2017-08-24 10:27:52 -07:00
|
|
|
const env = process.env.NODE_ENV || 'development';
|
|
|
|
|
2017-05-02 17:04:16 -07:00
|
|
|
module.exports = {
|
2017-06-01 08:27:35 -07:00
|
|
|
test: /\.js$/,
|
2017-10-10 09:44:51 -07:00
|
|
|
exclude: /node_modules/,
|
2017-05-05 19:18:23 -07:00
|
|
|
loader: 'babel-loader',
|
|
|
|
options: {
|
2017-08-24 10:27:52 -07:00
|
|
|
cacheDirectory: env === 'development' ? false : resolve(__dirname, '..', '..', '..', 'tmp', 'cache', 'babel-loader'),
|
2017-05-20 08:31:47 -07:00
|
|
|
},
|
|
|
|
};
|