main #371

Open
lxbfYeaa wants to merge 46 commits from lxbfYeaa/deShanXiao:main into main
Showing only changes of commit ce4dd54a69 - Show all commits

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",
};