-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack-dev-server.config.js
94 lines (92 loc) · 3.29 KB
/
webpack-dev-server.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
var webpack = require('webpack');
var path = require('path');
var buildPath = path.resolve(__dirname, 'src/www');
var nodeModulesPath = path.resolve(__dirname, 'node_modules');
var HtmlWebpackPlugin = require('html-webpack-plugin');
var TransferWebpackPlugin = require('transfer-webpack-plugin');
var config = {
//Entry point to the project
entry: [
'webpack/hot/dev-server',
'webpack/hot/only-dev-server',
path.join(__dirname, '/src/app/app.jsx')
],
//Webpack config options on how to obtain modules
resolve: {
//When requiring, you don't need to add these extensions
extensions: ["", ".js", ".jsx", ".txt"],
alias: {
//material-ui requires will be searched in src folder, not in node_modules
'material-ui': path.resolve(__dirname, '../src'),
codemirror: path.resolve(__dirname, 'node_modules/codemirror')
},
//Modules will be searched for in these directories
modulesDirectories: [
"node_modules",
path.resolve(__dirname, "node_modules"),
path.resolve(__dirname, '../src'),
path.resolve(__dirname, '../node_modules'),
path.resolve(__dirname, 'src/app/components/raw-code')
]
},
//Configuration for dev server
devServer: {
contentBase: 'src/www',
devtool: 'eval',
hot: true,
inline: true,
port: 3000
},
devtool: 'eval',
//Output file config
output: {
path: buildPath, //Path of output file
filename: 'app.js' //Name of output file
},
plugins: [
//Used to include index.html in build folder
new HtmlWebpackPlugin({
inject: false,
template: path.join(__dirname, '/src/www/index.html')
}),
//Allows for sync with browser while developing (like BorwserSync)
new webpack.HotModuleReplacementPlugin(),
//Allows error warninggs but does not stop compiling. Will remove when eslint is added
new webpack.NoErrorsPlugin()
],
module: {
//eslint loader
preLoaders: [
{
test: /\.(js|jsx)$/,
loader: 'eslint-loader',
include: [path.resolve(__dirname, "../src")],
exclude: [path.resolve(__dirname, "../src/svg-icons"), path.resolve(__dirname, "../src/utils/modernizr.custom.js")]
}
],
//Allow loading of non-es5 js files.
loaders: [
{
test: /\.jsx$/, //All .js and .jsx files
loaders: ['react-hot','babel-loader?optional=runtime&stage=0'], //react-hot is like browser sync and babel loads jsx and es6-7
include: [__dirname, path.resolve(__dirname, '../src')], //include these files
exclude: [nodeModulesPath] //exclude node_modules so that they are not all compiled
},
{
test:/\.txt$/,
loader: 'raw-loader',
include: path.resolve(__dirname, 'src/app/components/raw-code')
},
{
test: /\.js$/, //All .js and .jsx files
loader:'babel-loader?optional=runtime&stage=0', //react-hot is like browser sync and babel loads jsx and es6-7
include: [__dirname, path.resolve(__dirname, '../src')], //include these files
exclude: [nodeModulesPath] //exclude node_modules so that they are not all compiled
},
]
},
eslint: {
configFile: '../.eslintrc'
}
};
module.exports = config;