2020-03-17 17:14:05 +03:00
|
|
|
const path = require('path');
|
|
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
|
|
const webpack = require('webpack');
|
|
|
|
const WasmPackPlugin = require("@wasm-tool/wasm-pack-plugin");
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
entry: './index.js',
|
|
|
|
output: {
|
|
|
|
path: path.resolve(__dirname, 'dist'),
|
|
|
|
filename: 'index.js',
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
new HtmlWebpackPlugin({
|
|
|
|
template: 'index.html'
|
|
|
|
}),
|
|
|
|
new WasmPackPlugin({
|
|
|
|
crateDirectory: path.resolve(__dirname, ".")
|
|
|
|
}),
|
|
|
|
// Have this example work in Edge which doesn't ship `TextEncoder` or
|
|
|
|
// `TextDecoder` at this time.
|
|
|
|
new webpack.ProvidePlugin({
|
|
|
|
TextDecoder: ['text-encoding', 'TextDecoder'],
|
|
|
|
TextEncoder: ['text-encoding', 'TextEncoder']
|
|
|
|
})
|
|
|
|
],
|
2021-08-10 17:43:42 +03:00
|
|
|
mode: 'development',
|
|
|
|
experiments: {
|
|
|
|
asyncWebAssembly: true
|
|
|
|
}
|
2020-03-17 17:14:05 +03:00
|
|
|
};
|