ScoreSaberUtils-Script/webpack.config.js
Liam 0a81c26d08
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 34s
maybe fix it?
2024-04-26 00:09:20 +01:00

38 lines
896 B
JavaScript

const path = require('path');
const { UserscriptPlugin } = require('webpack-userscript');
module.exports = {
entry: './src/index.ts',
mode: process.env.NODE_ENV || 'development',
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
],
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],
},
plugins: [
new UserscriptPlugin({
metajs: false,
downloadBaseURL: 'https://ssu.fascinated.cc/scripts',
updateBaseURL: 'https://ssu.fascinated.cc/scripts',
headers: {
name: "ScoreSaber Utils",
author: "fascinated7 (discord)",
"run-at": "document-end",
match: "https://scoresaber.com/*",
version: `1.0.0-${process.env.GIT_REV || 'dev'}`,
}
})
],
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist'),
},
};