Unfortunately I have to use npm

This commit is contained in:
Lani Aung
2025-06-03 21:46:32 -07:00
parent f49a1617fb
commit 23e5e075cc
14 changed files with 2260 additions and 38 deletions
+21
View File
@@ -0,0 +1,21 @@
const path = require("path");
module.exports = {
entry: "./src/launch.ts",
module: {
rules: [
{
test: /\.tsx?$/,
use: "ts-loader",
exclude: /node_modules/,
},
],
},
resolve: {
extensions: [".tsx", ".ts", ".js"],
},
output: {
filename: "main.js",
path: path.resolve(__dirname, "www"),
},
};