38 lines
1.0 KiB
JavaScript
38 lines
1.0 KiB
JavaScript
const path = require("path");
|
|
const webpack = require("webpack");
|
|
const packageJson = require("./package.json");
|
|
|
|
module.exports = {
|
|
experiments: { outputModule: true },
|
|
entry: "./index.ts", // Adjust the entry point to match your project's main file
|
|
mode: "production",
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.tsx?$/,
|
|
use: "ts-loader",
|
|
exclude: /node_modules/,
|
|
},
|
|
],
|
|
},
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
PLUGIN_NAME: JSON.stringify(packageJson.name),
|
|
MODULE_PATH: JSON.stringify(`${packageJson.name}/${packageJson.module}`),
|
|
INFERENCE_URL: JSON.stringify("http://127.0.0.1:3928/inferences/llamacpp/chat_completion"),
|
|
}),
|
|
],
|
|
output: {
|
|
filename: "index.js", // Adjust the output file name as needed
|
|
path: path.resolve(__dirname, "dist"),
|
|
library: { type: "module" }, // Specify ESM output format
|
|
},
|
|
resolve: {
|
|
extensions: [".ts", ".js"],
|
|
},
|
|
optimization: {
|
|
minimize: false,
|
|
},
|
|
// Add loaders and other configuration as needed for your project
|
|
};
|