-
Notifications
You must be signed in to change notification settings - Fork 4
/
webpack.common.js
57 lines (55 loc) · 1.39 KB
/
webpack.common.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
const path = require("path");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const CopyPlugin = require("copy-webpack-plugin");
module.exports = {
entry: {
// produce both frontend bundle as well as simulator webxdc bundle
frontend: "./frontend/index.tsx",
webxdc: "./sim/webxdc.ts",
},
module: {
rules: [
{
test: /\.tsx?$/,
use: {
loader: "babel-loader",
options: {
presets: ["@babel/preset-typescript", "babel-preset-solid"],
},
},
exclude: /node_modules/,
},
],
},
resolve: {
extensions: [".tsx", ".ts", ".js"],
},
output: {
// create a directory per bundle so we can layer frontend separately
filename: "[name]/[name].js",
path: path.resolve(__dirname, "dist"),
publicPath: "/",
// clean assets, except backend which is generated by typescript
clean: {
keep(asset) {
return ["backend", "package.json"].includes(asset);
},
},
},
plugins: [
// produce index.html with only frontend.js script injected
new HtmlWebpackPlugin({
title: "webxdc-dev",
template: "./frontend/index.html",
chunks: ["frontend"],
}),
new CopyPlugin({
patterns: [
{
from: path.resolve(__dirname, "frontend/favicon.ico"),
to: path.resolve(__dirname, "dist"),
},
],
}),
],
};