-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathwebpack.config.js
119 lines (111 loc) · 2.91 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
// webpack.config.js
var pkg = require("./package.json");
var webpack = require("webpack");
var path = require("path");
var fs = require("fs");
var nodeExternals = require("webpack-node-externals");
process.traceDeprecation = true;
function config(nodeEnv) {
return {
entry: {
tadviewer: "./src/tadviewer.ts",
},
devtool: "source-map",
mode: nodeEnv,
resolve: {
extensions: [".webpack.js", ".web.js", ".js", ".ts", ".tsx"],
},
output: {
path: path.resolve(__dirname, "dist"),
filename: "[name].js",
libraryTarget: "commonjs2",
/* Note! Do NOT use the library target -- it will cause the top-level exports to be replaced
with a single "tadviewer" export.
See: https://github.com/webpack/webpack/issues/11800 for details
library: {
name: pkg.name,
export: "tadviewer",
type: "commonjs2",
},
*/
},
externalsPresets: { node: true }, // in order to ignore built-in modules like path, fs, etc.
externals: [
nodeExternals(),
nodeExternals({ modulesDir: "../../node_modules" }),
],
module: {
rules: [
// All files with a '.ts' or '.tsx' extension will be handled by 'ts-loader'.
{ test: /\.tsx?$/, loader: "ts-loader", exclude: /node_modules/ },
// All output '.js' files will have any sourcemaps re-processed by 'source-map-loader'.
{
enforce: "pre",
test: /\.js$/,
loader: "source-map-loader",
exclude: [/node_modules\/export-to-csv/],
},
{
test: /\.less$/,
use: ["style-loader", "css-loader", "less-loader"],
},
{
test: /\.scss$/,
use: [
"style-loader",
"css-loader",
"resolve-url-loader",
"sass-loader",
],
},
{
test: /\.css$/,
use: ["style-loader", "css-loader"],
},
{
test: /\.(jpe?g|png|gif|svg)$/i,
type: "asset/inline",
},
{
test: /\.(eot|svg|ttf|woff|woff2)$/,
type: "asset/inline",
},
],
},
optimization: {},
plugins: [
new webpack.IgnorePlugin({ resourceRegExp: /^\.\/stores\/appStore$/ }),
new webpack.DefinePlugin({
"process.env": {
NODE_ENV: JSON.stringify(nodeEnv),
},
}),
],
};
}
function development() {
var dev = config("development");
Object.assign(dev.optimization, {
minimize: false,
});
return dev;
}
function production() {
var prod = config("production");
prod.optimization.minimize = true;
return prod;
}
const configMap = {
development: [development()],
production: [production()],
};
module.exports = function (env, argv) {
let mode;
if (!argv || !argv.mode) {
mode = "development";
} else {
mode = argv.mode;
}
let conf = configMap[mode];
return conf;
};