39 lines
842 B
JavaScript
39 lines
842 B
JavaScript
"use strict";
|
|
const path = require("path");
|
|
//const WasmPackPlugin = require('@wasm-tool/wasm-pack-plugin');
|
|
|
|
module.exports = {
|
|
devtool: "inline-source-map",
|
|
mode: "production",
|
|
//mode: 'production',
|
|
entry: {
|
|
bundle: "./templates/index.ts",
|
|
bench: "./templates/bench/service-worker.ts",
|
|
glue: "./templates/bench/vendor.ts",
|
|
},
|
|
output: {
|
|
filename: "[name].js",
|
|
path: path.resolve(__dirname, "./static/cache/bundle"),
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.tsx?$/,
|
|
loader: "ts-loader",
|
|
},
|
|
],
|
|
},
|
|
resolve: {
|
|
extensions: [".ts", ".tsx", ".js"],
|
|
},
|
|
|
|
experiments: {
|
|
// executeModule: true,
|
|
// outputModule: true,
|
|
//syncWebAssembly: true,
|
|
// topLevelAwait: true,
|
|
asyncWebAssembly: true,
|
|
// layers: true,
|
|
// lazyCompilation: true,
|
|
},
|
|
};
|