Signed-off-by: Paul Derscheid <paul.derscheid@lmscloud.de> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
83 lines
2.4 KiB
JavaScript
83 lines
2.4 KiB
JavaScript
const { VueLoaderPlugin } = require("vue-loader");
|
|
//const autoprefixer = require("autoprefixer");
|
|
const path = require("path");
|
|
const rspack = require("@rspack/core");
|
|
|
|
module.exports = {
|
|
resolve: {
|
|
alias: {
|
|
"@fetch": path.resolve(
|
|
__dirname,
|
|
"koha-tmpl/intranet-tmpl/prog/js/fetch"
|
|
),
|
|
},
|
|
},
|
|
experiments: {
|
|
css: true,
|
|
},
|
|
entry: {
|
|
erm: "./koha-tmpl/intranet-tmpl/prog/js/vue/modules/erm.ts",
|
|
preservation:
|
|
"./koha-tmpl/intranet-tmpl/prog/js/vue/modules/preservation.ts",
|
|
"admin/record_sources":
|
|
"./koha-tmpl/intranet-tmpl/prog/js/vue/modules/admin/record_sources.ts",
|
|
},
|
|
output: {
|
|
filename: "[name].js",
|
|
path: path.resolve(
|
|
__dirname,
|
|
"koha-tmpl/intranet-tmpl/prog/js/vue/dist/"
|
|
),
|
|
chunkFilename: "[name].js",
|
|
globalObject: "window",
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.vue$/,
|
|
loader: "vue-loader",
|
|
options: {
|
|
experimentalInlineMatchResource: true,
|
|
},
|
|
exclude: [path.resolve(__dirname, "t/cypress/")],
|
|
},
|
|
{
|
|
test: /\.ts$/,
|
|
loader: "builtin:swc-loader",
|
|
options: {
|
|
jsc: {
|
|
parser: {
|
|
syntax: "typescript",
|
|
},
|
|
},
|
|
appendTsSuffixTo: [/\.vue$/],
|
|
},
|
|
exclude: [
|
|
/node_modules/,
|
|
path.resolve(__dirname, "t/cypress/"),
|
|
],
|
|
type: "javascript/auto",
|
|
},
|
|
{
|
|
test: /\.css$/i,
|
|
type: "javascript/auto",
|
|
use: ["style-loader", "css-loader"],
|
|
},
|
|
],
|
|
},
|
|
plugins: [
|
|
new VueLoaderPlugin(),
|
|
new rspack.DefinePlugin({
|
|
__VUE_OPTIONS_API__: true,
|
|
__VUE_PROD_DEVTOOLS__: false,
|
|
}),
|
|
],
|
|
externals: {
|
|
jquery: "jQuery",
|
|
"datatables.net": "DataTable",
|
|
"datatables.net-buttons": "DataTable",
|
|
"datatables.net-buttons/js/buttons.html5": "DataTable",
|
|
"datatables.net-buttons/js/buttons.print": "DataTable",
|
|
"datatables.net-buttons/js/buttons.colVis": "DataTable",
|
|
},
|
|
};
|