-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
110 lines (102 loc) · 2.57 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
const path = require('path');
const webpack = require('webpack');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const Dotenv = require('dotenv-webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
const sourcePath = path.join(__dirname, './src');
const outPath = path.join(__dirname, './dist');
module.exports = (env) => {
const isDevBuild = !(env && env.prod);
return [{
entry: [
'./src/index.tsx'
],
output: {
path: outPath,
filename: '[name].bundle.js',
chunkFilename: '[name].chunk.js',
publicPath: '/',
},
devtool: 'source-map',
devServer: {
contentBase: sourcePath,
hot: true,
inline: true,
historyApiFallback: {
disableDotRule: true
},
stats: 'minimal',
clientLogLevel: 'warning'
},
resolve: {
extensions: ['.ts', '.tsx', '.js', '.jsx', '.json'],
},
module: {
rules: [
{
test: /\.(js|jsx|mjs)$/,
loader: require.resolve('source-map-loader'),
enforce: 'pre',
include: sourcePath,
},
{
test: [/\.bmp$/, /\.gif$/, /\.jpe?g$/, /\.png$/],
loader: require.resolve('url-loader'),
options: {
limit: 10000,
name: 'dist/media/[name].[hash:8].[ext]',
},
},
{
test: /\.(ts|tsx)$/,
include: sourcePath,
use: [
{
loader: require.resolve('ts-loader'),
options: {
// disable type checker - we will use it in fork plugin
transpileOnly: true,
},
},
],
},
{
test: /\.(js|jsx|mjs)$/,
include: sourcePath,
loader: require.resolve('babel-loader'),
options: {
compact: true,
},
}
]
},
plugins: [
new CleanWebpackPlugin(),
new HtmlWebpackPlugin({
inject: true,
title: '📖 Pocket Tools',
template: 'src/index.html'
}),
new webpack.NamedModulesPlugin(),
new Dotenv(),
new ForkTsCheckerWebpackPlugin({
async: false,
watch: sourcePath,
tsconfig: "./tsconfig.json",
tslint: "./tslint.json",
}),
].concat(isDevBuild ? [
new webpack.HotModuleReplacementPlugin(),
] : [
]),
optimization: {
splitChunks : {
chunks: 'all'
},
},
node: {
fs: 'empty'
}
}]
}