-
Notifications
You must be signed in to change notification settings - Fork 2
/
webpack.config.ts
92 lines (82 loc) · 1.87 KB
/
webpack.config.ts
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
import path from 'path'
import webpack from 'webpack'
import PurgecssPlugin from 'purgecss-webpack-plugin'
import TerserPlugin from 'terser-webpack-plugin'
import glob from 'glob'
import HtmlWebpackPlugin from 'html-webpack-plugin'
export default function(_, argv): webpack.Configuration[] {
if (argv.production && argv.dev) {
throw new Error('Cannot pass the --dev and --production flags!')
}
const isProd = !!argv.production
const outputPath = path.resolve(__dirname, 'dist')
const outputHtmlFilename = 'index.html'
const createConfig = (projectName) => {
const config: webpack.Configuration = {
devtool: isProd ? false : 'source-map',
mode: 'none',
entry: {
[projectName]: path.resolve(__dirname, 'src/index.tsx')
},
output: {
path: outputPath,
filename: '[name].js',
},
module: {
rules: [
{
test: /\.css$/,
use: [
{
loader: 'style-loader'
},
{ loader: 'css-loader' }
]
},
{
test: /\.ts$|tsx/,
use: ['babel-loader'],
exclude: [/node_modules/]
}
]
},
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx']
},
plugins: [
new PurgecssPlugin({
paths: glob.sync(`../dist/${projectName}/*`)
}),
new HtmlWebpackPlugin({
filename: outputHtmlFilename,
template: path.resolve(__dirname, 'src/template.html'),
minify: isProd
? {
collapseWhitespace: true,
removeComments: true
}
: false
}),
]
}
if (isProd) {
config.mode = 'production'
config.optimization = {
minimizer: [new TerserPlugin()],
}
}
return config
}
const outputConfigs = [
createConfig('app')
]
// Tack on the webserver to the first one...
if(!isProd) {
outputConfigs[0].devServer = {
contentBase: path.join(__dirname, 'dist'),
compress: true,
port: 9090
}
}
return outputConfigs
}