summaryrefslogtreecommitdiffstats
path: root/webpack.config.ts
blob: 5d4e95facf6eecb0b5213e5b648ab527a1ccc834 (plain) (blame)
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
import path from "path";
import HtmlWebpackPlugin from "html-webpack-plugin";
import TsconfigPathsPlugin from "tsconfig-paths-webpack-plugin";
import MiniCssExtractPlugin from "mini-css-extract-plugin";
import dotenv from "dotenv";

dotenv.config();

const absolutePath = (relativePath: string) =>
  path.resolve(__dirname, relativePath);

module.exports = {
  mode: process.env.MODE,
  entry: {
    index: "src/index.ts",
    main: "src/main.ts"
  },
  output: {
    filename: "[name].js",
    path: absolutePath("dist"),
  },
  module: {
    rules: [
      {
        test: /\.ts$/,
        include: [absolutePath("src")],
        use: "ts-loader",
      },
      {
        test: /\.js$/,
        enforce: "pre",
        use: "source-map-loader",
      },
      {
        test: /\.css$/,
        use: [MiniCssExtractPlugin.loader, "css-loader"],
      },
    ],
  },
  resolve: {
    extensions: [".ts", "..."],
    plugins: [new TsconfigPathsPlugin()],
  },
  devtool:
    process.env.MODE === "development"
      ? "eval-cheap-module-source-map"
      : undefined,
  plugins: [
    new HtmlWebpackPlugin({
      template: "src/templates/index.html",
      favicon: "static/favicon.ico",
      filelename: "index.html",
      showErrors: true,
      excludeChunks: ["main"],
    }),
    new HtmlWebpackPlugin({
      template: "src/templates/main.html",
      favicon: "static/favicon.ico",
      filename: "main.html",
      showErrors: true,
      excludeChunks: ["index"],
    }),
    new MiniCssExtractPlugin(),
  ],
  node: {
    global: true,
  },
  devServer: {
    contentBase: absolutePath("static"),
    compress: true,
    port: 8000,
  },
};