-
Notifications
You must be signed in to change notification settings - Fork 17
/
webpack.config.mjs
95 lines (88 loc) · 1.88 KB
/
webpack.config.mjs
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
import webpack from 'webpack';
import TerserPlugin from 'terser-webpack-plugin';
import fs from 'node:fs';
import path from 'node:path';
const dirname = path.resolve('.');
const packageJsonPath = `${dirname}/package.json`;
const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8'));
const {
name,
version,
author,
license
} = packageJson;
const plugins = [
new webpack.BannerPlugin({
banner: `${name} v${version} | ${author} | license: ${license}`
})
];
const baseConfig = {
mode: 'development',
entry: './src/main.ts',
output: {
filename: 'xsound.js',
path: `${dirname}/build`,
publicPath: '/build/',
library: {
name: 'xsound',
type: 'umd'
}
},
module: {
rules: [
{
test: /\.ts$/,
exclude: /node_modules/,
use: [
{
loader: 'ts-loader',
options: {
transpileOnly: true
}
}
]
},
{
test: /\.wasm$/,
type: 'asset/inline'
}
]
},
resolve: {
extensions: ['.ts', '.js']
},
// eslint-disable-next-line no-undef
plugins: process.env.NODE_ENV === 'production' ? plugins : [],
optimization: {
// eslint-disable-next-line no-undef
minimize: process.env.NODE_ENV === 'production',
minimizer: [
new TerserPlugin({
terserOptions: {
compress: {
// eslint-disable-next-line no-undef
drop_console: process.env.NODE_ENV === 'production'
},
keep_classnames: /^.*?Processor$/
}
})
]
},
devtool: 'source-map'
};
const windowConfig = {
...baseConfig,
output: {
filename: 'xsound.min.js',
path: `${dirname}/build`,
publicPath: '/build/',
library: {
type: 'window'
}
},
devServer: {
static: dirname,
host: '0.0.0.0'
}
};
export default [baseConfig, windowConfig];