quad-image 0.2.0

An image host
const path = require('node:path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyPlugin = require('copy-webpack-plugin');

module.exports = {
  entry: './web/index.tsx',
  output: {
    path: path.resolve(__dirname, './dist'),
    filename: 'static/bundle.[contenthash].js',
    webassemblyModuleFilename: "static/[hash].module.wasm",
    library: 'app',
  },

  plugins: [
    new HtmlWebpackPlugin({
      template: './web/index.ejs',
      templateParameters: {
        mode: 'home',
      },
    }),
    new HtmlWebpackPlugin({
      template: './web/index.ejs',
      filename: 'gallery/index.html',
      templateParameters: {
        mode: 'gallery',
      },
    }),
    new HtmlWebpackPlugin({
      template: './web/index.ejs',
      filename: 'image-debug/index.html',
      templateParameters: {
        mode: 'image-debug',
      },
    }),
    new CopyPlugin({
      patterns: [{ from: 'web/plain/dumb', to: 'dumb' }, { from: 'web/plain/terms', to: 'terms' }],
    }),
  ],

  // Enable sourcemaps for debugging webpack's output.
  devtool: 'source-map',

  resolve: {
    extensions: ['.ts', '.tsx', '.js', '.json'],

    // only for cypress (hopefully)
    alias: {
      react: 'preact/compat',
      'react-dom': 'preact/compat',
    },
  },

  module: {
    rules: [
      {
        test: /\.tsx?$/,
        use: [{ loader: 'babel-loader' }],
        exclude: /node_modules/,
      }
    ],
  },
  experiments: {
    futureDefaults: true,
  }
};