-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwebpack.test.ts
More file actions
152 lines (144 loc) · 3.36 KB
/
webpack.test.ts
File metadata and controls
152 lines (144 loc) · 3.36 KB
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
import path from "path"
import webpack from "webpack"
import HtmlWebpackPlugin from "html-webpack-plugin"
import MiniCssExtractPlugin from "mini-css-extract-plugin"
import { CleanWebpackPlugin } from "clean-webpack-plugin"
interface IAppConfigEntries {
title: string
filename: string
template: string
chunks: string[]
}
interface IAppConfig {
entry: webpack.EntryObject
entries: {
[key: string]: IAppConfigEntries
}
}
type IPlugins = (CleanWebpackPlugin | MiniCssExtractPlugin | HtmlWebpackPlugin)[]
const appConfig: IAppConfig = {
entry: {
app: "./src/frontend/scripts/app.ts",
home: "./src/frontend/scripts/home.ts",
editor: "./src/frontend/scripts/editor.ts",
privacy: "./src/frontend/scripts/legal.ts",
terms: "./src/frontend/scripts/legal.ts",
license: "./src/frontend/scripts/license.ts",
autherror: "./src/frontend/scripts/404.ts",
404: "./src/frontend/scripts/404.ts"
},
entries: {
app: {
title: "app",
filename: "app.ejs",
template: "app.ejs",
chunks: ["app"]
},
home: {
title: "home",
filename: "home.ejs",
template: "home.ejs",
chunks: ["home"]
},
editor: {
title: "editor",
filename: "editor.ejs",
template: "editor.ejs",
chunks: ["editor"]
},
privacy: {
title: "privacy",
filename: "privacy.ejs",
template: "privacy.ejs",
chunks: ["privacy"]
},
terms: {
title: "terms",
filename: "terms.ejs",
template: "terms.ejs",
chunks: ["terms"]
},
license: {
title: "license",
filename: "license.ejs",
template: "license.ejs",
chunks: ["license"]
},
autherror: {
title: "autherror",
filename: "autherror.ejs",
template: "autherror.ejs",
chunks: ["autherror"]
},
404: {
title: "404",
filename: "404.ejs",
template: "404.ejs",
chunks: ["404"]
}
}
}
const plugins: IPlugins = [
new CleanWebpackPlugin(),
new MiniCssExtractPlugin({
filename: "[name].css"
})
]
Object.values(appConfig.entries).forEach((entryInfo, _entryName) => {
plugins.push(
new HtmlWebpackPlugin({
title: entryInfo.title,
filename: path.join(__dirname, "./views/" + entryInfo.filename),
template: "!!raw-loader!./src/frontend/templates/" + entryInfo.template,
chunks: entryInfo.chunks,
publicPath: "/bundle",
chunksSortMode: "manual",
inject: "head",
scriptLoading: "defer"
})
)
})
const entry = {
sw: { import: "./src/frontend/scripts/sw.ts", filename: "../sw.js" },
...appConfig.entry
}
const config: webpack.Configuration = {
mode: "production",
entry,
output: {
path: path.resolve(__dirname, "public/bundle"),
filename: "[name].js",
iife: false,
clean: true
},
plugins,
resolve: {
extensions: [".ts", ".js", ".scss"]
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: "babel-loader"
}
},
{
test: /\.ts$/,
exclude: /node_modules/,
use: {
loader: "babel-loader",
options: {
presets: ["@babel/preset-typescript"]
}
}
},
{
test: /\.s[ac]ss$/i,
use: [MiniCssExtractPlugin.loader, "css-loader", "sass-loader"]
}
]
}
}
export default config