-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
118 lines (116 loc) · 2.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/* eslint-disable no-undef */
/* eslint-disable @typescript-eslint/no-var-requires */
const path = require("path");
const glob = require("glob");
const TerserPlugin = require("terser-webpack-plugin");
const CopyWebpackPlugin = require("copy-webpack-plugin");
const CssMinimizerPlugin = require("css-minimizer-webpack-plugin");
const dist = path.resolve(__dirname, "dist");
module.exports = () => ({
optimization: {
minimizer: [
new TerserPlugin({ parallel: true }),
new CssMinimizerPlugin({}),
],
},
mode: "development",
entry: {
"index.js": glob.sync("./vendor/**/*.js").concat(["./app/devapp.tsx"]),
},
output: {
filename: "[name]",
publicPath: "/",
path: dist,
},
resolve: {
extensions: [".tsx", ".ts", ".js", ".json", ".scss", ".sass"],
},
devServer: {
port: 9000,
},
devtool: "inline-source-map",
module: {
rules: [
{
test: /\.tsx?$/,
exclude: /node_modules/,
use: [
{
loader: "babel-loader",
},
{
loader: "ts-loader",
},
],
},
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: "babel-loader",
},
},
{
test: /\.js$/,
enforce: "pre",
use: ["source-map-loader"],
},
{
test: /\.(s[ac]ss)$/,
use: [
// {
// // inject CSS to page
// loader: 'style-loader'
// },
// {
// // translates CSS into CommonJS modules
// loader: 'css-loader'
// },
// MiniCssExtractPlugin.loader,
// "style-loader",
"to-string-loader",
"css-loader",
{
// Run postcss actions
loader: "postcss-loader",
options: {
// `postcssOptions` is needed for postcss 8.x;
// if you use postcss 7.x skip the key
postcssOptions: {
// postcss plugins, can be exported to postcss.config.js
plugins: function () {
return [require("autoprefixer")];
},
},
},
},
"sass-loader",
// {
// // compiles Sass to CSS
// loader: 'sass-loader'
// }
],
},
// {
// test: /\.css$/,
// use: [MiniCssExtractPlugin.loader, "css-loader"],
// },
// {
// test: /\.(gif|ttf|eot|svg|woff2?)$/,
// use: "url-loader?name=[name].[ext]",
// },
],
},
plugins: [
// new MiniCssExtractPlugin({ filename: "app.css" }),
new CopyWebpackPlugin({
patterns: [{ from: "static/", to: dist }],
}),
// new webpack.ProvidePlugin({
// $: 'jquery',
// jQuery: 'jquery',
// 'window.jQuery': 'jquery',
// Popper: ['popper.js', 'default']
// })
],
});