-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
webpack.config.js
96 lines (95 loc) · 1.91 KB
/
webpack.config.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
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
93
94
95
96
const path = require("path");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const TerserPlugin = require("terser-webpack-plugin");
const Dotenv = require("dotenv-webpack");
const TsconfigPathsPlugin = require("tsconfig-paths-webpack-plugin")
module.exports = {
mode: process.env.NODE_ENV,
context: `${__dirname}/app`,
entry: "./angular/index.js",
output: {
path: `${__dirname}/app/dist`,
filename: "[name].js",
},
resolve: {
extensions: [".js", ".jsx", ".ts", ".tsx", ".json"],
plugins: [
new TsconfigPathsPlugin({
configFile: path.resolve(__dirname, "app/react/tsconfig.json"),
}),
],
},
devtool: process.env.NODE_ENV === "production" ? false : "inline-source-map",
devServer: {
static: path.join(__dirname, "app"),
compress: true,
port: 9000,
},
plugins: [
new Dotenv({ systemvars: true }),
new HtmlWebpackPlugin({
template: "index.html",
favicon: `${__dirname}/app/img/brmw-logo.svg`,
}),
new MiniCssExtractPlugin({
filename: `bundle.css`,
}),
],
optimization: {
minimizer: [
new TerserPlugin({
parallel: true,
}),
],
splitChunks: {
chunks: "all",
},
},
module: {
rules: [
{
test: /\.tsx?$/,
use: "ts-loader",
exclude: /node_modules/,
},
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: ["babel-loader"],
},
{
test: /\.html$/i,
loader: "html-loader",
},
{
test: /\.(png|jpe?g|gif|svg)$/i,
type: "asset/resource",
},
{
test: /\.(sa|sc|c)ss$/,
use: [
{
loader: "style-loader",
},
{
loader: "css-loader",
},
{
loader: "postcss-loader",
},
{
loader: "sass-loader",
options: {
implementation: require("sass"),
},
},
],
},
{
test: /\.(woff(2)?|ttf|eot)(\?v=\d+\.\d+\.\d+)?$/,
type: "asset/resource",
},
],
},
};