-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.ts
67 lines (63 loc) · 1.38 KB
/
webpack.config.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import dotenv from "dotenv";
import * as path from "path";
import * as webpack from "webpack";
// in case you run into any typescript error when configuring `devServer`
import "webpack-dev-server";
import TerserPlugin from "terser-webpack-plugin";
declare const process: {
env: {
NODE_ENV: "production" | "development" | "none";
};
};
dotenv.config();
const config: webpack.Configuration = {
devServer: {
static: {
directory: path.join(__dirname, "public"),
},
compress: true,
port: 9000,
},
mode: process.env.NODE_ENV,
entry: {
// Add more components here
FirstWebComponent: "./components/first-web-component",
},
output: {
// automatic output
filename: "[name].bundle.js",
path: `${__dirname}/dist`,
},
optimization: {
minimize: true,
minimizer: [
new TerserPlugin({
terserOptions: {
mangle: true,
},
}),
],
},
module: {
rules: [
{
exclude: /(node_modules)/,
test: /\.[tj]s?$/,
loader: "babel-loader",
options: {
presets: ['@babel/preset-env']
},
},
{
test: /\.css$/i,
include: path.resolve(__dirname, "styles"),
use: ["style-loader", "css-loader", "postcss-loader"],
},
],
},
plugins: [],
resolve: {
extensions: [".js", ".ts", ".css"],
}
};
export default config;