2021-06-29 18:39:43 +02:00
|
|
|
import type { Configuration } from "webpack";
|
2021-05-17 12:20:07 +02:00
|
|
|
import type WebpackDevServer from "webpack-dev-server";
|
2021-06-29 18:39:43 +02:00
|
|
|
import path from "path";
|
|
|
|
import webpack from "webpack";
|
|
|
|
import HtmlWebpackPlugin from "html-webpack-plugin";
|
|
|
|
import MiniCssExtractPlugin from "mini-css-extract-plugin";
|
|
|
|
import sveltePreprocess from "svelte-preprocess";
|
2021-05-17 16:09:42 +02:00
|
|
|
import ForkTsCheckerWebpackPlugin from "fork-ts-checker-webpack-plugin";
|
2021-06-29 18:39:43 +02:00
|
|
|
import NodePolyfillPlugin from "node-polyfill-webpack-plugin";
|
2020-04-03 14:56:21 +02:00
|
|
|
|
2021-06-29 18:39:43 +02:00
|
|
|
const mode = process.env.NODE_ENV ?? "development";
|
|
|
|
const buildNpmTypingsForApi = !!process.env.BUILD_TYPINGS;
|
|
|
|
const isProduction = mode === "production";
|
2021-05-12 11:05:49 +02:00
|
|
|
const isDevelopment = !isProduction;
|
|
|
|
|
2021-06-29 18:39:43 +02:00
|
|
|
const entries: { [key: string]: string } = {};
|
|
|
|
if (!buildNpmTypingsForApi) {
|
|
|
|
entries.main = "./src/index.ts";
|
|
|
|
}
|
|
|
|
entries.iframe_api = "./src/iframe_api.ts";
|
|
|
|
|
2020-04-03 14:56:21 +02:00
|
|
|
module.exports = {
|
2021-06-29 18:39:43 +02:00
|
|
|
entry: entries,
|
2021-05-12 11:05:49 +02:00
|
|
|
mode: mode,
|
2021-06-29 18:39:43 +02:00
|
|
|
devtool: isDevelopment ? "inline-source-map" : "source-map",
|
2020-04-03 14:56:21 +02:00
|
|
|
devServer: {
|
2021-07-21 19:29:45 +02:00
|
|
|
contentBase: "./dist",
|
|
|
|
host: "0.0.0.0",
|
2021-05-13 16:13:07 +02:00
|
|
|
sockPort: 443,
|
2020-04-03 18:31:11 +02:00
|
|
|
disableHostCheck: true,
|
2020-05-12 00:07:50 +02:00
|
|
|
historyApiFallback: {
|
2021-06-29 18:39:43 +02:00
|
|
|
rewrites: [{ from: /^_\/.*$/, to: "/index.html" }],
|
|
|
|
disableDotRule: true,
|
2020-05-12 00:07:50 +02:00
|
|
|
},
|
2020-04-03 14:56:21 +02:00
|
|
|
},
|
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /\.tsx?$/,
|
2021-05-17 16:09:42 +02:00
|
|
|
//use: 'ts-loader',
|
2020-04-03 14:56:21 +02:00
|
|
|
exclude: /node_modules/,
|
2021-06-29 18:39:43 +02:00
|
|
|
loader: "ts-loader",
|
2021-05-17 16:09:42 +02:00
|
|
|
options: {
|
2021-06-29 18:39:43 +02:00
|
|
|
transpileOnly: !buildNpmTypingsForApi,
|
|
|
|
compilerOptions: {
|
|
|
|
declaration: buildNpmTypingsForApi,
|
|
|
|
},
|
2021-05-17 16:09:42 +02:00
|
|
|
},
|
2020-04-03 14:56:21 +02:00
|
|
|
},
|
2021-03-18 12:37:05 +01:00
|
|
|
{
|
|
|
|
test: /\.scss$/,
|
2021-05-17 15:42:12 +02:00
|
|
|
exclude: /node_modules/,
|
2021-05-17 14:30:54 +02:00
|
|
|
use: [
|
2021-06-29 18:39:43 +02:00
|
|
|
MiniCssExtractPlugin.loader,
|
|
|
|
{
|
|
|
|
loader: "css-loader",
|
2021-05-17 15:42:12 +02:00
|
|
|
options: {
|
|
|
|
//url: false,
|
2021-06-29 18:39:43 +02:00
|
|
|
sourceMap: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"sass-loader",
|
|
|
|
],
|
2021-05-17 14:30:54 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.css$/,
|
2021-05-17 15:42:12 +02:00
|
|
|
exclude: /node_modules/,
|
2021-05-17 14:30:54 +02:00
|
|
|
use: [
|
|
|
|
MiniCssExtractPlugin.loader,
|
|
|
|
{
|
2021-06-29 18:39:43 +02:00
|
|
|
loader: "css-loader",
|
2021-05-17 15:42:12 +02:00
|
|
|
options: {
|
|
|
|
//url: false,
|
2021-06-29 18:39:43 +02:00
|
|
|
sourceMap: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
2021-03-18 12:37:05 +01:00
|
|
|
},
|
2021-05-11 17:37:21 +02:00
|
|
|
{
|
2021-05-12 15:57:53 +02:00
|
|
|
test: /\.(html|svelte)$/,
|
2021-05-11 17:37:21 +02:00
|
|
|
exclude: /node_modules/,
|
|
|
|
use: {
|
2021-06-29 18:39:43 +02:00
|
|
|
loader: "svelte-loader",
|
2021-05-11 17:37:21 +02:00
|
|
|
options: {
|
|
|
|
compilerOptions: {
|
|
|
|
// Dev mode must be enabled for HMR to work!
|
2021-06-29 18:39:43 +02:00
|
|
|
dev: isDevelopment,
|
2021-05-11 17:37:21 +02:00
|
|
|
},
|
|
|
|
emitCss: isProduction,
|
|
|
|
hotReload: isDevelopment,
|
|
|
|
hotOptions: {
|
|
|
|
// List of options and defaults: https://www.npmjs.com/package/svelte-loader-hot#usage
|
|
|
|
noPreserveState: false,
|
|
|
|
optimistic: true,
|
|
|
|
},
|
2021-05-17 14:30:54 +02:00
|
|
|
preprocess: sveltePreprocess({
|
|
|
|
scss: true,
|
|
|
|
sass: true,
|
2021-06-01 16:17:36 +02:00
|
|
|
}),
|
2021-06-29 18:39:43 +02:00
|
|
|
onwarn: function (
|
|
|
|
warning: { code: string },
|
|
|
|
handleWarning: (warning: { code: string }) => void
|
|
|
|
) {
|
2021-06-01 16:17:36 +02:00
|
|
|
// See https://github.com/sveltejs/svelte/issues/4946#issuecomment-662168782
|
|
|
|
|
2021-06-29 18:39:43 +02:00
|
|
|
if (warning.code === "a11y-no-onchange") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (warning.code === "a11y-autofocus") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (warning.code === "a11y-media-has-caption") {
|
|
|
|
return;
|
|
|
|
}
|
2021-06-01 16:17:36 +02:00
|
|
|
|
|
|
|
// process as usual
|
|
|
|
handleWarning(warning);
|
2021-06-29 18:39:43 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-03-18 12:37:05 +01:00
|
|
|
},
|
2021-05-11 17:37:21 +02:00
|
|
|
|
|
|
|
// Required to prevent errors from Svelte on Webpack 5+, omit on Webpack 4
|
|
|
|
// See: https://github.com/sveltejs/svelte-loader#usage
|
|
|
|
{
|
|
|
|
test: /node_modules\/svelte\/.*\.mjs$/,
|
|
|
|
resolve: {
|
2021-06-29 18:39:43 +02:00
|
|
|
fullySpecified: false,
|
|
|
|
},
|
2021-05-11 17:37:21 +02:00
|
|
|
},
|
2021-05-17 14:30:54 +02:00
|
|
|
{
|
2021-05-26 17:07:07 +02:00
|
|
|
test: /\.(eot|svg|png|gif|jpg)$/,
|
2021-05-17 15:42:12 +02:00
|
|
|
exclude: /node_modules/,
|
2021-06-29 18:39:43 +02:00
|
|
|
type: "asset",
|
2021-05-26 17:07:07 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.(woff(2)?|ttf)$/,
|
2021-06-29 18:39:43 +02:00
|
|
|
type: "asset",
|
2021-05-26 17:07:07 +02:00
|
|
|
generator: {
|
2021-06-29 18:39:43 +02:00
|
|
|
filename: "fonts/[name][ext]",
|
|
|
|
},
|
|
|
|
},
|
2020-04-03 14:56:21 +02:00
|
|
|
],
|
|
|
|
},
|
|
|
|
resolve: {
|
2021-05-12 15:57:53 +02:00
|
|
|
alias: {
|
2021-06-29 18:39:43 +02:00
|
|
|
svelte: path.resolve("node_modules", "svelte"),
|
2021-05-12 15:57:53 +02:00
|
|
|
},
|
2021-06-29 18:39:43 +02:00
|
|
|
extensions: [".tsx", ".ts", ".js", ".svelte"],
|
|
|
|
mainFields: ["svelte", "browser", "module", "main"],
|
2020-04-03 14:56:21 +02:00
|
|
|
},
|
|
|
|
output: {
|
2021-03-04 19:00:00 +01:00
|
|
|
filename: (pathData) => {
|
|
|
|
// Add a content hash only for the main bundle.
|
|
|
|
// We want the iframe_api.js file to keep its name as it will be referenced from outside iframes.
|
2021-06-29 18:39:43 +02:00
|
|
|
return pathData.chunk?.name === "main" ? "js/[name].[contenthash].js" : "[name].js";
|
2021-03-04 19:00:00 +01:00
|
|
|
},
|
2021-06-29 18:39:43 +02:00
|
|
|
path: path.resolve(__dirname, "dist"),
|
|
|
|
publicPath: "/",
|
2020-04-03 14:56:21 +02:00
|
|
|
},
|
|
|
|
plugins: [
|
2021-05-17 14:30:54 +02:00
|
|
|
new webpack.HotModuleReplacementPlugin(),
|
2021-05-17 16:09:42 +02:00
|
|
|
new ForkTsCheckerWebpackPlugin({
|
|
|
|
eslint: {
|
2021-06-29 18:39:43 +02:00
|
|
|
files: "./src/**/*.ts",
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
new MiniCssExtractPlugin({ filename: "[name].[contenthash].css" }),
|
|
|
|
new HtmlWebpackPlugin({
|
|
|
|
template: "./dist/index.tmpl.html.tmp",
|
|
|
|
minify: {
|
|
|
|
collapseWhitespace: true,
|
|
|
|
keepClosingSlash: true,
|
|
|
|
removeComments: false,
|
|
|
|
removeRedundantAttributes: true,
|
|
|
|
removeScriptTypeAttributes: true,
|
|
|
|
removeStyleLinkTypeAttributes: true,
|
|
|
|
useShortDoctype: true,
|
|
|
|
},
|
|
|
|
chunks: ["main"],
|
2021-05-17 16:09:42 +02:00
|
|
|
}),
|
2020-04-03 14:56:21 +02:00
|
|
|
new webpack.ProvidePlugin({
|
2021-06-29 18:39:43 +02:00
|
|
|
Phaser: "phaser",
|
2020-04-03 18:31:11 +02:00
|
|
|
}),
|
2021-05-17 16:30:19 +02:00
|
|
|
new NodePolyfillPlugin(),
|
2021-03-31 16:20:11 +02:00
|
|
|
new webpack.EnvironmentPlugin({
|
2021-06-29 18:39:43 +02:00
|
|
|
API_URL: null,
|
|
|
|
SKIP_RENDER_OPTIMIZATIONS: false,
|
|
|
|
DISABLE_NOTIFICATIONS: false,
|
|
|
|
PUSHER_URL: undefined,
|
|
|
|
UPLOADER_URL: null,
|
2021-07-30 14:08:27 +02:00
|
|
|
ADMIN_URL: undefined,
|
2021-06-29 18:39:43 +02:00
|
|
|
DEBUG_MODE: null,
|
|
|
|
STUN_SERVER: null,
|
|
|
|
TURN_SERVER: null,
|
|
|
|
TURN_USER: null,
|
|
|
|
TURN_PASSWORD: null,
|
|
|
|
JITSI_URL: null,
|
|
|
|
JITSI_PRIVATE_MODE: null,
|
|
|
|
START_ROOM_URL: null,
|
|
|
|
MAX_USERNAME_LENGTH: 8,
|
|
|
|
MAX_PER_GROUP: 4,
|
|
|
|
DISPLAY_TERMS_OF_USE: false,
|
|
|
|
}),
|
2020-07-28 11:06:08 +02:00
|
|
|
],
|
2021-05-12 13:38:32 +02:00
|
|
|
} as Configuration & WebpackDevServer.Configuration;
|