-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.prod.js
85 lines (82 loc) · 2.53 KB
/
webpack.prod.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
const path = require('path');
const {CleanWebpackPlugin} = require('clean-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const JavaScriptObfuscator = require('webpack-obfuscator');
const TSLintPlugin = require('tslint-webpack-plugin');
const outputFolder = path.resolve(__dirname, 'dist');
const nodeModulesFolder = path.join(__dirname, './node_modules/');
module.exports = {
entry: './src/ts/Game.ts',
output: {
filename: '[name].js',
path: outputFolder,
pathinfo: false
},
externals: {
phaser: 'phaser'
},
mode: 'production',
module: {
rules: [
{
test: /\.tsx?$/,
loader: 'ts-loader',
exclude: /node_modules/,
},
{
test: [/\.vert$/, /\.frag$/],
exclude: [nodeModulesFolder],
use: 'raw-loader'
},
]
},
optimization: {
splitChunks: {
cacheGroups: {
commons: {
test: /[\\/]node_modules[\\/]/,
name: "vendors",
chunks: "all"
}
}
}
},
resolve: {
extensions: [".ts", ".js"]
},
plugins: [
new CleanWebpackPlugin(),
new CopyWebpackPlugin([
{
from: "./src/assets",
to: "assets",
force: true,
ignore: ["**/src/**/*"]
},
{ from: "./src/html/app.css", force: true },
{ from: "./src/html/web.config", force: true },
{ from: "./src/html/favicon.png", force: true }
]),
new HtmlWebpackPlugin({
template: "./src/html/index.html",
filename: "index.html",
minify: true
}),
new TSLintPlugin({
files: ['./src/ts/**/*.ts'],
exclude: ['./src/ts/**/*.d.ts']
}),
new JavaScriptObfuscator({
// 🕮 See: https://github.com/javascript-obfuscator/javascript-obfuscator
debugProtection: true,
debugProtectionInterval: true,
disableConsoleOutput: true,
domainLock: [],
// 👇 gives errors when set to true
selfDefending: false,
stringArrayEncoding: true,
transformObjectKeys: true,
}),
]
};