Compare commits

..

1 Commits

Author SHA1 Message Date
10879e2d57 1
555
2026-04-12 23:12:50 +00:00
2 changed files with 22 additions and 0 deletions

View File

22
backEnd/webpack.config.ts Normal file
View File

@@ -0,0 +1,22 @@
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",
};