mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
179 lines
4.1 KiB
JavaScript
179 lines
4.1 KiB
JavaScript
/**
|
|
* @file
|
|
* @copyright 2020 Aleksej Komarov
|
|
* @license MIT
|
|
*/
|
|
|
|
const path = require('path');
|
|
const { defineConfig } = require('@rspack/cli');
|
|
const { rspack } = require('@rspack/core');
|
|
|
|
const createStats = (verbose) => ({
|
|
assets: verbose,
|
|
builtAt: verbose,
|
|
cached: false,
|
|
children: false,
|
|
chunks: false,
|
|
colors: true,
|
|
entrypoints: true,
|
|
hash: false,
|
|
modules: false,
|
|
performance: false,
|
|
timings: verbose,
|
|
version: verbose,
|
|
});
|
|
|
|
module.exports = (env = {}, argv) => {
|
|
const mode = argv.mode || 'production';
|
|
const bench = env.TGUI_BENCH;
|
|
|
|
/** @type {import('@rspack/core').Configuration} */
|
|
const config = defineConfig({
|
|
cache: true,
|
|
experiments: {
|
|
cache: {
|
|
type: 'persistent',
|
|
storage: {
|
|
type: 'filesystem',
|
|
directory: path.resolve(__dirname, '.yarn/rspack'),
|
|
},
|
|
},
|
|
css: true,
|
|
},
|
|
mode: mode === 'production' ? 'production' : 'development',
|
|
context: path.resolve(__dirname),
|
|
target: ['web', 'browserslist:last 6 Edge versions'],
|
|
entry: {
|
|
tgui: ['./packages/tgui'],
|
|
'tgui-panel': ['./packages/tgui-panel'],
|
|
'tgui-say': ['./packages/tgui-say'],
|
|
},
|
|
output: {
|
|
path: argv.useTmpFolder
|
|
? path.resolve(__dirname, './public/.tmp')
|
|
: path.resolve(__dirname, './public'),
|
|
filename: '[name].bundle.js',
|
|
chunkFilename: '[name].bundle.js',
|
|
chunkLoadTimeout: 15000,
|
|
publicPath: '/',
|
|
assetModuleFilename: '[name][ext]',
|
|
},
|
|
resolve: {
|
|
pnp: true,
|
|
extensions: ['.tsx', '.ts', '.js', '.jsx'],
|
|
alias: {
|
|
tgui: path.resolve(__dirname, './packages/tgui'),
|
|
'tgui-panel': path.resolve(__dirname, './packages/tgui-panel'),
|
|
'tgui-say': path.resolve(__dirname, './packages/tgui-say'),
|
|
'tgui-dev-server': path.resolve(
|
|
__dirname,
|
|
'./packages/tgui-dev-server',
|
|
),
|
|
},
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.([tj]s(x)?|cjs)$/,
|
|
use: [
|
|
{
|
|
loader: 'builtin:swc-loader',
|
|
options: {
|
|
jsc: {
|
|
parser: {
|
|
syntax: 'typescript',
|
|
tsx: true,
|
|
},
|
|
transform: {
|
|
react: {
|
|
runtime: 'automatic',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
],
|
|
type: 'javascript/auto',
|
|
},
|
|
{
|
|
test: /\.(s)?css$/,
|
|
use: [
|
|
{
|
|
loader: require.resolve('sass-loader'),
|
|
options: {
|
|
api: 'modern-compiler',
|
|
implementation: 'sass-embedded',
|
|
},
|
|
},
|
|
],
|
|
type: 'css',
|
|
},
|
|
{
|
|
test: /\.(png|jpg)$/,
|
|
oneOf: [
|
|
{
|
|
issuer: /\.(s)?css$/,
|
|
type: 'asset/inline',
|
|
},
|
|
{
|
|
type: 'asset/resource',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
test: /\.svg$/,
|
|
oneOf: [
|
|
{
|
|
issuer: /\.(s)?css$/,
|
|
type: 'asset/inline',
|
|
},
|
|
{
|
|
type: 'asset/resource',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
optimization: {
|
|
emitOnErrors: false,
|
|
},
|
|
performance: {
|
|
hints: false,
|
|
},
|
|
devtool: false,
|
|
|
|
stats: createStats(true),
|
|
plugins: [
|
|
new rspack.EnvironmentPlugin({
|
|
NODE_ENV: env.NODE_ENV || mode,
|
|
WEBPACK_HMR_ENABLED: env.WEBPACK_HMR_ENABLED || argv.hot || false,
|
|
DEV_SERVER_IP: env.DEV_SERVER_IP || null,
|
|
}),
|
|
],
|
|
});
|
|
|
|
if (bench) {
|
|
config.entry = {
|
|
'tgui-bench': ['./packages/tgui-bench/entrypoint'],
|
|
};
|
|
}
|
|
|
|
// Development build specific options
|
|
if (mode !== 'production') {
|
|
config.devtool = 'cheap-module-source-map';
|
|
}
|
|
|
|
// Development server specific options
|
|
if (argv.devServer) {
|
|
config.devServer = {
|
|
progress: false,
|
|
quiet: false,
|
|
noInfo: false,
|
|
clientLogLevel: 'silent',
|
|
stats: createStats(false),
|
|
};
|
|
}
|
|
|
|
return config;
|
|
};
|