-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathwebpack.config.js
53 lines (51 loc) · 1.65 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
const path = require('path');
const webpack = require('webpack');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
module.exports = ({ buildEnv }) => {
let config = {
entry: {
"Audio": './src/index.ts',
"Controls": './src/controls/HiFiControls.ts'
},
plugins: [
new webpack.DefinePlugin({
'HIFI_API_VERSION': JSON.stringify(`v${require('./package.json').version}`)
}),
new CleanWebpackPlugin(),
],
output: {
filename: `HighFidelity[name]-latest.js`,
path: path.resolve(__dirname, 'dist'),
// The two options below are the keys to allowing other developers
// to use the libarary without making use of any loaders.
library: 'HighFidelity[name]',
libraryTarget: 'var'
},
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
],
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],
alias: {
// Works around the warning emitted when Webpack can't find \`perf_hooks\` during compilation of `HiFiUtilites.ts` (which is fine).
'perf_hooks': false
}
},
};
if (buildEnv !== "prod") {
config["mode"] = "development";
config["devtool"] = 'inline-source-map';
} else {
config["mode"] = "production";
config["optimization"] = {
"minimize": true,
};
}
return config;
}