-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
83 lines (77 loc) · 1.89 KB
/
Copy pathwebpack.config.js
File metadata and controls
83 lines (77 loc) · 1.89 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
const path = require("path");
//const CircularDependencyPlugin = require("circular-dependency-plugin");
const CopyPlugin = require("copy-webpack-plugin");
const UglifyJsPlugin = require("uglifyjs-webpack-plugin");
const crypto = require("crypto");
const crypto_orig_createHash = crypto.createHash;
crypto.createHash = algorithm => crypto_orig_createHash(algorithm == "md4" ? "sha256" : algorithm);
module.exports = (env, options) => {
return {
entry: {
timepicker: {
import: "./src/loader.ts",
filename: "basiscore.timepicker.js",
library: {
name: "bc",
type: "assign",
},
},
},
devtool: "source-map",
output: {
filename: "[name].js",
},
devServer: {
static: path.resolve(__dirname, "wwwroot"),
onBeforeSetupMiddleware: function (server) {
},
open: true,
port: 3002,
},
module: options.mode,
optimization: {
minimize: options.mode === "production",
minimizer: [
new UglifyJsPlugin({
include: /\.min\.js$/,
}),
],
},
module: {
rules: [
{
test: /\.ts$/,
use: ["ts-loader"],
exclude: /\.d\.ts$/,
},
{
test: /\.d\.ts$/,
use: ["ignore-loader"],
},
{
test: /\.(png|html)$/,
type: "asset/source",
},
{
test: /\.css$/,
use: ["style-loader", "css-loader"],
}
],
},
resolve: {
extensions: [".ts", ".d.ts", ".tsx", ".js", ".jsx", ".css"],
},
plugins: [
new CopyPlugin({
patterns: [
{
from: path.resolve(
__dirname,
"node_modules/alasql/dist/alasql.min.js"
),
},
],
}),
],
};
};