-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
99 lines (96 loc) · 2.4 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
const webpack = require('webpack');
const path = require('path');
const wpConfig = require('./.wp-env.json');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const BrowserSyncPlugin = require('browser-sync-webpack-plugin');
const ESLintPlugin = require('eslint-webpack-plugin');
const environment = process.env.NODE_ENV || 'development';
const isDevelopment = environment === 'development';
const themePath = wpConfig.themes[0];
module.exports = {
entry: {
main: `${__dirname}/src/js/main.ts`,
'admin-editor': `${__dirname}/src/js/admin-editor.ts`,
},
target: 'web',
mode: isDevelopment ? environment : 'production',
devtool: isDevelopment ? 'inline-source-map' : false,
resolve: {
extensions: ['.ts', '.tsx', '.js'],
},
output: {
path: path.resolve(__dirname, themePath),
publicPath: themePath,
filename: 'js/[name].js',
},
module: {
rules: [
{
test: /\.ts|js$/,
use: [
{
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env'],
},
},
{ loader: 'ts-loader' },
],
exclude: [/node_modules\/(?!(swiper|dom7|axios|has-flag|supports-color)\/).*/],
},
{
test: /\.(sa|sc|c)ss$/,
use: [
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
sourceMap: isDevelopment,
url: false,
importLoaders: 2,
},
},
{
loader: 'postcss-loader',
options: {
sourceMap: isDevelopment,
postcssOptions: {
plugins: [require('autoprefixer')],
},
},
},
{
loader: 'sass-loader',
options: {
sourceMap: isDevelopment,
},
},
],
},
{
test: /\.svg$/,
use: [
{
loader: 'svg-sprite-loader',
},
],
},
],
},
plugins: [
new ESLintPlugin({
extensions: ['.ts', '.js'],
fix: true,
}),
new webpack.DefinePlugin({
NODE_ENV: JSON.stringify(environment),
}),
new MiniCssExtractPlugin({
filename: 'css/[name].css',
}),
new BrowserSyncPlugin({
proxy: `localhost:${wpConfig.port}`,
files: ['app/themes/**/*.php'],
}),
],
};