-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
127 lines (121 loc) · 3.18 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
125
126
127
import CssMinimizerPlugin from 'css-minimizer-webpack-plugin';
import FaviconsWebpackPlugin from 'favicons-webpack-plugin';
import HtmlWebpackPlugin from 'html-webpack-plugin';
import MiniCSSExtractPlugin from 'mini-css-extract-plugin';
import path from 'node:path';
import TerserPlugin from 'terser-webpack-plugin';
import { GenerateSW } from 'workbox-webpack-plugin';
export default (env, argv) => {
const isProduction = argv.mode === 'production';
const entryFiles = {
main: path.join(path.resolve(), './src/scripts/main.ts'),
};
const plugins = [
new MiniCSSExtractPlugin({
filename: '[name]-bundle.css',
}),
new HtmlWebpackPlugin({
title: 'Chip8 Emulator',
template: path.join(path.resolve(), './src/html/index.html'),
}),
new FaviconsWebpackPlugin({
logo: path.join(path.resolve(), './src/resources/favicon.svg'),
logoMaskable: path.join(path.resolve(), './src/resources/maskable.svg'),
favicons: {
appName: 'Chip8 Emulator',
appDescription: 'A Chip-8, Super Chip-8 (SCHIP), and XO-CHIP emulator written in TypeScript.',
background: '#222222',
theme_color: '#222222',
mode: 'webapp',
start_url: '/',
appleStatusBarStyle: 'black-translucent',
version: '1.0',
icons: {
android: true,
appleIcon: true,
appleStartup: true,
favicons: true,
windows: true,
yandex: true,
},
},
manifest: path.join(path.resolve(), './src/resources/templates/manifest.json'),
}),
];
if (isProduction) {
plugins.push(
new GenerateSW({
clientsClaim: true,
skipWaiting: true,
navigateFallback: 'index.html',
cleanupOutdatedCaches: true,
}),
);
Object.assign(entryFiles, {
register_service: path.join(path.resolve(), './src/scripts/utils/service-worker-registration.ts'),
});
}
return {
entry: { ...entryFiles },
output: {
path: path.join(path.resolve(), 'dist'),
filename: '[name]-bundle.js',
clean: true,
},
watchOptions: {
ignored: '**/node_modules',
},
resolve: {
extensions: [ '.ts', '.js' ],
},
resolveLoader: {
modules: ['node_modules']
},
module: {
rules: [
{
test: /\.tsx?$/,
loader: 'ts-loader'
},
{
test: /\.css$/,
use: [
{
loader: MiniCSSExtractPlugin.loader,
},
{
loader: 'css-loader',
},
{
loader: "postcss-loader",
options: {
postcssOptions: {
plugins: [
'autoprefixer'
]
}
}
},
],
},
{
test: /\.svg$/,
type: 'asset/source',
},
],
},
optimization: {
minimizer: [
new CssMinimizerPlugin(),
new TerserPlugin(),
],
},
plugins: [ ...plugins ],
devServer: {
static: path.join(path.resolve(), 'dist'),
compress: true,
port: 4000,
open: true,
},
}
}