-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.ts
92 lines (82 loc) · 2.14 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
import "dotenv/config";
import { resolve } from "path";
import Dotenv from "dotenv-webpack";
import HtmlWebpackPlugin from "html-webpack-plugin";
import TsconfigPathsPlugin from "tsconfig-paths-webpack-plugin";
import { Configuration as WebpackConfiguration, ResolvePluginInstance } from "webpack";
import { Configuration as WebpackDevServerConfiguration } from "webpack-dev-server";
import stanTitlesData from "./data.json";
interface Configuration extends WebpackConfiguration {
devServer?: WebpackDevServerConfiguration;
}
const TITLE = "Stan TV Coding Challenge";
const config: Configuration = {
devServer: {
historyApiFallback: true,
hot: true,
port: process.env.PORT,
setupMiddlewares: (middlewares, devServer) => {
if (!devServer) {
throw new Error("webpack-dev-server is not defined");
}
if (!devServer.app) {
throw new Error("express application is not defined");
}
devServer.app.get("/getStanTitles", async (_, response) => {
await new Promise((resolve) => setTimeout(resolve, 1000));
response.json(stanTitlesData);
});
return middlewares;
},
static: "./dist",
},
devtool: "inline-source-map",
entry: "./src/index.tsx",
mode: "development",
module: {
rules: [
{
test: /\.(eot|otf|ttf|woff2?)$/i,
type: "asset/resource",
},
{
generator: {
filename: "[name][ext]",
},
test: /\.(gif|jpe?g|png|svg)$/i,
type: "asset/resource",
},
{
test: /\.css$/i,
use: ["style-loader", "css-loader"],
},
{
test: /\.tsx?$/,
use: "ts-loader",
},
],
},
optimization: {
usedExports: true,
},
output: {
clean: true,
filename: "app.js",
path: resolve(__dirname, "dist"),
publicPath: "/*",
},
plugins: [
new Dotenv(),
new HtmlWebpackPlugin({
inject: false,
template: "./src/index.html",
title: TITLE,
xhtml: true,
}),
],
resolve: {
extensions: [".js", ".ts", ".tsx"],
plugins: [new TsconfigPathsPlugin() as ResolvePluginInstance],
},
};
export default config;