555

Signed-off-by: lxbfYeaa <testing@example.com>
This commit is contained in:
2026-04-13 01:24:07 +00:00
parent cb7f1c45e8
commit 286c1dc0bd

View File

@@ -1,22 +0,0 @@
import path from "path";
module.exports = {
entry: "./index.ts",
module: {
rules: [
{
test: /\.ts$/,
use: "ts-loader",
exclude: /node_modules/,
},
],
},
resolve: {
extensions: [".ts", ".js"],
},
output: {
filename: "index.js",
path: path.resolve(__dirname, "dist"),
},
target: "node",
};