-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
58 lines (57 loc) · 1.47 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
const path = require('path');
const pathBrowserify = require('path-browserify');
const CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = {
mode: 'production',
entry: './src/audioProcessor.ts',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'audioProcessor.js',
library: 'AudioProcessor',
libraryTarget: 'umd',
},
plugins: [
new CopyWebpackPlugin({
patterns: [
{ from: 'node_modules/@tensorflow/tfjs-backend-wasm/dist/*.wasm', to: '@tensorflow/tfjs-backend-wasm/[name][ext]'},
],
}),
],
module: {
rules: [
{
test: /\.ts$/,
use: 'ts-loader',
exclude: /node_modules/,
},
{
test: /\.d\.ts$/, // Handle declaration files
use: 'raw-loader', // Use raw-loader to handle declaration files
exclude: /node_modules/,
},
{
test: /\.wasm$/,
type: 'webassembly/async',
},
{
test: /\.wasm$/i,
type: 'javascript/auto',
use: [
{
loader: 'file-loader',
},
],
},
],
},
resolve: {
extensions: ['.js', '.ts', '.wasm'],
fallback: {
"path": require.resolve("path-browserify"),
},
modules: [path.resolve(__dirname, 'node_modules')],
},
optimization: {
chunkIds: 'total-size'
}
};