This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
12 lines (11 sloc)
282 Bytes
| // for babel-plugin-webpack-loaders | |
| require('babel-register'); | |
| const devConfigs = require('./webpack.config.development'); | |
| module.exports = { | |
| output: { | |
| libraryTarget: 'commonjs2' | |
| }, | |
| module: { | |
| loaders: devConfigs.module.loaders.slice(1) // remove babel-loader | |
| } | |
| }; |