-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
52 lines (49 loc) · 1.32 KB
/
webpack.config.js
File metadata and controls
52 lines (49 loc) · 1.32 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
const TerserPlugin = require("terser-webpack-plugin");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const InterpolateHtmlPlugin = require("./dist/index");
const path = require("path")
module.exports = {
mode: "production",
entry: './test/src/index.ts',
output: {
path: __dirname + '/test/dist',
clean: true,
},
module: {
rules: [
{
test: /\.(js|ts|tsx)$/,
loader: "ts-loader",
exclude: [path.resolve("./node_modules")],
options: {
transpileOnly: true,
},
},
]
},
optimization: {
minimize: true,
minimizer: [
new HtmlWebpackPlugin({
template: "./test/src/index.html",
}),
new TerserPlugin({
test: /\.js(\?.*)?$/i,
parallel: true,
terserOptions: {
format: {
comments: false,
},
}
})
]
},
plugins: [
new InterpolateHtmlPlugin(HtmlWebpackPlugin, {
SELCUK_URL: "https://www.shopier.com/ShowProductNew/storefront.php?shop=vildanelsanatlari",
}),
],
resolve: {
extensions: [".ts"],
},
}