Created
December 6, 2016 16:15
-
-
Save zrrtcs/13aa9a4d6b2bae89b6955a94927470dc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module.exports = { | |
| entry: './src/js/index.js', | |
| output: { | |
| filename: './dist/js/index.js' | |
| }, | |
| module: { | |
| loaders: [{ | |
| loader: 'babel', | |
| exclude: /node_modules/, | |
| include: '/src/', //include should be in array | |
| test: /\.js$/, | |
| query: { | |
| presets: ['es2015', 'stage-0', 'react'] | |
| } | |
| }] | |
| } | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment