-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.ts
132 lines (130 loc) · 4.57 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
import path from 'path';
import { Configuration } from 'webpack';
import HtmlWebpackPlugin from 'html-webpack-plugin';
import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin';
import { TsconfigPathsPlugin } from 'tsconfig-paths-webpack-plugin';
import { getEnvironmentVariables } from './src/config/dotenv';
import webpack from 'webpack';
import { BundleAnalyzerPlugin } from 'webpack-bundle-analyzer';
const webpackConfiguration = (env: {
production?: boolean;
development?: boolean;
analyze?: boolean;
}): Configuration => {
const isProduction = env.production ? true : false;
const isAnalyze = env.analyze ? true : false;
1;
const envVariables = getEnvironmentVariables(isProduction);
const devPort = Number(JSON.parse(envVariables['process.env.PORT']));
return {
entry: './src',
resolve: {
extensions: ['.ts', '.tsx', '.js'],
plugins: [
new TsconfigPathsPlugin({
extensions: ['.ts', '.tsx', '.js', '.css', '.module.css'],
}),
],
fallback: {
path: require.resolve('path-browserify'),
fs: require.resolve('fs'),
},
},
output: {
path: path.join(__dirname, '/dist'),
filename: 'index.js',
},
module: {
rules: [
{
test: /\.tsx?$/,
loader: 'ts-loader',
options: {
transpileOnly: true,
},
exclude: [/dist/, /node_modules/],
},
{
test: /\.(png|jpe?g|gif|svg|ttf|woff|woff2)$/i,
use: [
{
loader: 'file-loader',
},
],
},
{
test: /\.(css|scss)$/,
use: [
'style-loader',
{
loader: 'css-loader',
options: {
importLoaders: 1,
modules: {
localIdentName: '[name]__[local]___[hash:base64:5]',
},
},
},
{
loader: 'sass-loader',
},
{
loader: 'sass-resources-loader',
options: {
resources: require(path.join(
process.cwd(),
'src/styles/__library.ts',
)),
},
},
],
include: /\.module\.css$/,
},
{
test: /\.(css|scss)$/,
use: [
'style-loader',
'css-loader',
'sass-loader',
{
loader: 'sass-resources-loader',
options: {
resources: require(path.join(
process.cwd(),
'src/styles/__library.ts',
)),
},
},
],
exclude: /\.module\.css$/,
},
],
},
plugins: [
new webpack.DefinePlugin(envVariables), // setting environment variables
new HtmlWebpackPlugin({
inject: true,
template: path.join(__dirname, '/public/index.html'),
favicon: path.join(__dirname, '/public/favicon.ico'),
}),
new ForkTsCheckerWebpackPlugin({
eslint: {
files: './src',
},
}),
isAnalyze
? new BundleAnalyzerPlugin({ analyzerMode: 'static' })
: new webpack.DefinePlugin({}),
],
devServer: {
port: devPort,
open: true,
hot: false,
contentBase: 'public',
publicPath: '/',
historyApiFallback: true,
},
devtool: !isProduction ? 'source-map' : false,
};
};
export default webpackConfiguration;