-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
82 lines (73 loc) · 2.04 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
const path = require('path')
const CopyPlugin = require('copy-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const TerserPlugin = require('terser-webpack-plugin')
module.exports = (env, argv) => {
return {
stats: 'minimal', // Keep console output easy to read.
entry: './src/index.ts', // Your program entry point
// Your build destination
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'bundle.js',
},
// Config for your testing server
devServer: {
compress: true,
allowedHosts: 'all', // If you are using WebpackDevServer as your production server, please fix this line!
static: false,
client: {
logging: 'warn',
overlay: {
errors: true,
warnings: false,
},
progress: true,
},
port: 1234,
host: '0.0.0.0',
},
// Web games are bigger than pages, disable the warnings that our game is too big.
performance: { hints: false },
// Enable sourcemaps while debugging
devtool: argv.mode === 'development' ? 'eval-source-map' : undefined,
// Minify the code when making a final build
optimization: {
minimize: argv.mode === 'production',
minimizer: [
new TerserPlugin({
terserOptions: {
ecma: 6,
compress: { drop_console: true },
output: { comments: false, beautify: false },
},
}),
],
},
// Explain webpack how to do Typescript
module: {
rules: [
{
test: /\.ts(x)?$/,
loader: 'ts-loader',
exclude: /node_modules/,
},
],
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],
},
plugins: [
// Copy our static assets to the final build
new CopyPlugin({
patterns: [{ from: 'assets', to: 'assets' }],
}),
// Make an index.html from the template
new HtmlWebpackPlugin({
template: 'index.html',
hash: true,
minify: false,
}),
],
}
}