-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack-main.ts
53 lines (49 loc) · 932 Bytes
/
webpack-main.ts
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
//
import path from "path";
import WebpackShellPlugin from "webpack-shell-plugin-next";
import externals from "webpack-node-externals";
let config = {
entry: {
index: ["./generator/index.ts"]
},
output: {
path: path.join(__dirname, "dist"),
filename: "[name].js"
},
devtool: "inline-source-map",
mode: "development",
target: "node",
externals: [externals()],
module: {
rules: [
{
test: /\.ts$/,
exclude: /node_modules/,
use: {
loader: "ts-loader"
}
},
{
test: /\.js$/,
enforce: "pre",
use: {
loader: "source-map-loader"
}
},
{
test: /\.html$/,
use: {
loader: "raw-loader"
}
}
]
},
resolve: {
extensions: [".ts", ".js", ".html"],
alias: {
"~": path.resolve(__dirname),
}
},
cache: true
};
export default config;