-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
68 lines (67 loc) · 1.81 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
const { resolve } = require('path');
require('dotenv').config();
const { EnvironmentPlugin } = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
const ESLintPlugin = require('eslint-webpack-plugin');
module.exports = {
entry: {
app: './src/index.tsx'
},
plugins: [
new EnvironmentPlugin([]),
new HtmlWebpackPlugin({
template: './public/index.html'
}),
new ForkTsCheckerWebpackPlugin(),
new ESLintPlugin({
emitError: true,
emitWarning: true,
failOnError: true,
extensions: ['.ts', '.tsx', '.js']
})
],
module: {
rules: [
{
test: /\.tsx?$/,
loader: 'esbuild-loader',
include: [resolve(__dirname, 'src')],
exclude: /node_modules/,
options: {
loader: 'tsx',
target: 'es2015'
}
},
{
test: /\.(png|svg|jpg|jpeg|gif)$/i,
include: resolve(__dirname, 'src/assets'),
type: 'asset/resource'
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader']
}
]
},
resolve: {
symlinks: false,
extensions: ['.ts', '.tsx', '.js'],
alias: {
'@components': resolve(__dirname, 'src/components/'),
'@graphql': resolve(__dirname, 'src/graphql/'),
'@interfaces': resolve(__dirname, 'src/graphql/interfaces/'),
'@hooks': resolve(__dirname, 'src/hooks/'),
'@pages': resolve(__dirname, 'src/pages/'),
'@authPages': resolve(__dirname, 'src/pages/auth/'),
'@route': resolve(__dirname, 'src/route/'),
'@routeComponents': resolve(__dirname, 'src/route/components/'),
'@theme': resolve(__dirname, 'src/theme/')
}
},
optimization: {
splitChunks: {
chunks: 'async'
}
}
};