From d083a298fb65f08069c7d98fc026d8ee4e9d6823 Mon Sep 17 00:00:00 2001 From: lxbfYeaa Date: Sun, 12 Apr 2026 23:42:26 +0000 Subject: [PATCH] 1 555 Signed-off-by: lxbfYeaa --- backEnd/webpack.config.ts | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 backEnd/webpack.config.ts diff --git a/backEnd/webpack.config.ts b/backEnd/webpack.config.ts deleted file mode 100644 index e9ae750..0000000 --- a/backEnd/webpack.config.ts +++ /dev/null @@ -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", -};