-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
63 lines (61 loc) · 1.35 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
// eslint-disable-next-line @typescript-eslint/no-var-requires
const HtmlWebpackPlugin = require('html-webpack-plugin');
const path = require('path')
const { DIR, EXT = 'ts' } = process.env;
module.exports = {
mode: 'development',
entry: `./${DIR}/index.${EXT}`,
plugins: [
new HtmlWebpackPlugin({
template: `./${DIR}/public/index.html`,
}),
],
module: {
rules: [{
test: /\.jsx?/,
use: [{
loader: 'babel-loader',
options: {
presets: [
'@babel/preset-env',
'@babel/preset-react',
],
},
}],
}, {
test: /\.tsx?/,
loader: 'ts-loader',
}, {
test: /\.css$/,
use: [
"style-loader",
"css-loader"
],
exclude: /node_modules/
}, {
test: /\.(png|jpg|gif|jpeg|webp|svg|eot|ttf|woff|woff2)$/,
use: [
{
loader: "url-loader",
options: {
limit: 10240, //10K
esModule: false,
name: "[name]_[hash:6].[ext]",
outputPath: "assets"
}
}
],
exclude: /node_modules/
}],
},
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
alias: {
relinx: path.resolve(__dirname, 'src'),
},
},
devServer: {
port: process.env.PORT || '8083',
},
devtool: "cheap-module-eval-source-map"
};