-
Notifications
You must be signed in to change notification settings - Fork 29
/
webpack.config.js
84 lines (76 loc) · 2.22 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
const path = require("path");
var webpack = require('webpack');
let fs = require("fs");
var node_modules = fs.readdirSync("node_modules").filter(function (x) {
return x !== ".bin";
});
var node_modules = {};
fs.readdirSync("node_modules")
.filter(function (x) {
return [".bin"].indexOf(x) === -1;
})
.forEach(function (mod) {
if (mod !== "goban") {
node_modules[mod] = "commonjs " + mod;
}
});
module.exports = (_env, _argv) => {
let ret = {
mode: "development",
entry: {
gtp2ogs: "./src/main.ts",
},
resolve: {
modules: ["src", "schema", "node_modules"],
extensions: [".webpack.js", ".web.js", ".ts", ".tsx", ".js"],
},
output: {
path: path.join(__dirname, "dist"),
filename: "[name].js",
},
module: {
rules: [
{
test: /\.tsx?$/,
use: [
{
loader: "ts-loader",
options: {
transpileOnly: false,
happyPackMode: false,
allowTsInNodeModules: true,
},
},
],
},
{
test: /\.node$/,
loader: "node-loader",
},
],
},
devtool: "inline-source-map",
performance: {
maxAssetSize: 1024 * 1024 * 5.5,
maxEntrypointSize: 1024 * 1024 * 5.5,
},
target: "node",
externals: node_modules,
plugins: [
new webpack.BannerPlugin({
banner: (banner) => {
return `#!/usr/bin/env node\nrequire("source-map-support/register");\n`;
//return `#!/usr/bin/env node\n`;
},
raw: true,
entryOnly: false,
}),
],
optimization: {
removeAvailableModules: false,
removeEmptyChunks: false,
splitChunks: false,
},
};
return ret;
};