-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
37 lines (36 loc) · 1.07 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
var webpack = require('webpack');
var path = require('path');
module.exports = {
entry: [
//'webpack/hot/dev-server',
//'webpack-dev-server/client?http://localhost:8080',
'./src/index.js'
],
resolve: {
// allows us to import modules as if /src is the root.
// so you can now do: import Comment from 'components/Comment'
// rather than: import Comment from '../componenets/Comment'
root: [
path.resolve(__dirname, './src')
],
// allows tou to require without the .js at the end of filenames
// import Component from 'component' vs import Component from 'component.js'
extenstions: [ '', '.js', '.json', '.jsx' ]
},
output: {
path: __dirname + '/dist', // same as path: path.resolve(__dirname, 'dist')
filename: 'bundle.js'
},
module:{
loaders: [
//telling webpack which loaders we want to use.
// For now just run the code through the babel-loader.
// 'babel' is an alias fir babel-loader
{
test: /\.js$/,
loader: 'babel',
exclude: /node_modules/
}
]
}
};