forked from pinkkis/phaser-driving
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
124 lines (121 loc) · 2.64 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
const path = require('path');
const webpack = require('webpack');
const HtmlWebPackPlugin = require('html-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
const TerserPlugin = require('terser-webpack-plugin');
const CleanPlugin = require('clean-webpack-plugin');
const {version, distOutput} = require('./buildConfig');
// Phaser webpack config
const phaserModule = path.join(__dirname, '/node_modules/phaser/');
const phaser = path.join(phaserModule, process.env.NODE_ENV === 'production' ? 'dist/phaser.min.js' : 'dist/phaser.js');
const threeModule = path.join(__dirname, '/node_modules/three/');
const three = path.join(threeModule, 'build/three.module.js');
module.exports = {
output: {
globalObject: 'this',
path: distOutput,
},
entry: {
game: ['./src/game.ts']
},
devtool: process.env.NODE_ENV === 'production' ? undefined : 'eval-source-map',
module: {
rules: [{
test: /\.tsx?$/,
use: 'babel-loader',
exclude: /node_modules/
},
{
test: /\.map.js$/,
use: ["source-map-loader"],
enforce: "pre"
},
{
test: [/\.vert$/, /\.frag$/],
use: 'raw-loader'
},
{
test: /.worker.js$/,
use: [{
loader: 'worker-loader'
}]
},
{
test: /\.css$/,
use: [
MiniCssExtractPlugin.loader,
"css-loader"
]
},
{
test: /phaser\.min\.js$/,
use: [{
loader: 'expose-loader',
options: 'Phaser'
}]
},
{
test: /\.(eot|svg|ttf|woff|woff2)$/,
loader: 'file-loader?name=assets/fonts/[name].[ext]'
}
]
},
plugins: [
new CleanPlugin(),
new webpack.DefinePlugin({
'CANVAS_RENDERER': JSON.stringify(true),
'WEBGL_RENDERER': JSON.stringify(true)
}),
new HtmlWebPackPlugin({
template: './src/index.html',
filename: './index.html',
chunks: ['game', 'vendor'],
buildType: process.env.NODE_ENV,
version: version,
favicon: './src/favicon.ico',
}),
new CopyWebpackPlugin([
{
from: './assets/',
to: './assets/'
},
], {}),
new MiniCssExtractPlugin({
filename: '[name].css',
chunkFilename: '[name].css',
}),
new webpack.ProvidePlugin({
'THREE': 'three',
})
],
resolve: {
extensions: ['.ts', '.js'],
alias: {
'phaser': phaser,
'three': three,
}
},
optimization: {
minimizer: [
new TerserPlugin(),
new OptimizeCSSAssetsPlugin()
],
splitChunks: {
cacheGroups: {
commons: {
test: /[\\/]node_modules[\\/]/,
name: 'vendor',
chunks: 'initial'
}
}
}
},
watchOptions: {
ignored: [
'node_modules',
'assets/**/*'
]
}
};