Bump deps & fix compile

This commit is contained in:
Andras Schmelczer 2025-02-23 16:19:19 +00:00
parent ff5b987688
commit b4783d1007
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
6 changed files with 6784 additions and 7593 deletions

View file

@ -14,9 +14,9 @@
"typescript": "5.7.3",
"sync_lib": "file:../../backend/sync_lib/pkg",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.4",
"@types/node": "^22.13.5",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-jest": "^29.2.6",
"p-queue": "^8.1.0",
"fetch-retry": "^6.0.0",
"byte-base64": "^1.1.0",
@ -26,4 +26,4 @@
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1"
}
}
}

View file

@ -3,6 +3,7 @@ const path = require("path");
module.exports = (_env, _argv) => ({
entry: "./src/index.ts",
devtool: "source-map",
target: "node",
module: {
rules: [
{
@ -43,7 +44,6 @@ module.exports = (_env, _argv) => ({
name: "SyncClient",
type: "umd"
},
globalObject: "this",
path: path.resolve(__dirname, "dist")
}
});