-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
108 lines (106 loc) · 2.57 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
const path = require('path');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
bail: true,
mode: 'development',
entry: [path.join(__dirname, 'src/index')],
target: 'web',
devtool: 'cheap-module-source-map',
output: {
filename: '[name].js',
path: path.join(__dirname, 'out')
},
resolve: {
extensions: ['.js', '.jsx', '.ts', 'tsx']
},
devServer: {
hot: true,
historyApiFallback: true,
contentBase: path.join(__dirname, 'out'),
port: 8080,
host: 'localhost'
},
module: {
rules: [
{
test: /\.[tj]sx?$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
cacheDirectory: true,
babelrc: false,
presets: [
[
'@babel/preset-env',
{ targets: { chrome: '66' } }
],
'@babel/preset-typescript',
'@babel/preset-react'
],
plugins: [
['@babel/plugin-proposal-decorators', { legacy: true }],
['@babel/plugin-proposal-class-properties', { loose: true }],
['@babel/plugin-proposal-object-rest-spread', { loose: true }],
['transform-react-remove-prop-types', { mode: 'wrap' }],
'dynamic-import-node-babel-7',
'react-hot-loader/babel'
]
}
}
},
{
test: /\.(woff2?|eot|ttf|svg|png|jpg|gif)$/,
use: {
loader: 'url-loader',
options: {
limit: 20000,
fallback: 'file-loader'
}
}
},
{
test: /\.css$/,
use: createCssUse()
},
{
test: /\.scss$/,
use: createCssUse(true)
},
{
test: /\.jsx?$/,
use: 'source-map-loader',
exclude: /node_modules/,
enforce: 'pre'
}
]
},
plugins: [
new MiniCssExtractPlugin({ chunkFilename: '[name].css' }),
new HtmlWebpackPlugin({
title: 'Test',
template: path.join(__dirname, 'index.ejs'),
filename: 'index.html'
})
]
};
function createCssUse(sass = false, modules = false) {
const output = [
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
importLoaders: 1,
modules,
localIdentName: modules
? '[path][name]-[local]-[hash:base64:5]'
: undefined
}
}
];
if (sass) {
output.push('sass-loader');
}
return output;
}