forked from mliebelt/pgn-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.common.cjs
44 lines (43 loc) · 1.16 KB
/
webpack.common.cjs
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
const path = require('path');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const CompressionPlugin = require('compression-webpack-plugin');
//const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
module.exports = {
entry: './src/index.ts',
plugins: [
//new BundleAnalyzerPlugin(),
new CleanWebpackPlugin(),
new CompressionPlugin(),
],
output: {
filename: 'dist.js',
path: path.resolve(__dirname, 'lib'),
publicPath: '/lib/',
library: 'PGNV',
libraryTarget: 'umd',
},
resolve: {
extensions: ['.ts', '.js']
},
module: {
rules: [
{
test: /\.ts/,
use: 'ts-loader',
exclude: /node_modules/
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader'],
},
{
test: /\.(png|jpg|gif|svg)$/,
type: 'asset/inline'
},
{
test: /\.(woff|woff2|eot|ttf|otf)$/,
type: 'asset/inline'
},
],
},
};