-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
67 lines (53 loc) · 1.29 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
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
const path = require('path')
const fs = require('fs')
const APPLICATION_ENTRIES = {}
const SCRIPT_LOADERS = ['babel-loader?retainLines=true']
const APPLICATIONS_PATH = path.join(__dirname, 'src', 'applications')
for (const moduleName of fs.readdirSync(APPLICATIONS_PATH))
APPLICATION_ENTRIES[moduleName] = [path.join(APPLICATIONS_PATH, moduleName)]
module.exports = {
context: __dirname,
devtool: 'sourcemap',
entry: APPLICATION_ENTRIES,
output: {
path: path.resolve('dist'),
filename: 'index.js',
},
resolve: {
alias: {},
extensions: ['.js', '.jsx'],
modules: [path.resolve('node_modules'), path.resolve('src')],
},
module: {
loaders: [
{
use: SCRIPT_LOADERS,
test: /\.jsx?$/,
exclude: [path.resolve('node_modules')],
},
{
test: /\.html$/,
use: [
'file-loader?name=[name].[ext]',
'extract-loader',
'html-loader',
],
},
{loader: 'url-loader', test: /\.png$/},
{loader: 'file-loader', test: /\.(ttf|eot|svg)$/},
],
},
watchOptions: {
ignored: /node_modules/,
},
devServer: {
port: 3030,
contentBase: path.resolve('src'),
stats: 'errors-only',
overlay: {
warnings: true,
errors: true,
},
},
plugins: [],
}