Compare commits

...

2 Commits

2 changed files with 5 additions and 4 deletions

View File

@@ -2,6 +2,7 @@
"name": "ayristech-worker", "name": "ayristech-worker",
"version": "1.0.0", "version": "1.0.0",
"description": "", "description": "",
"type": "module",
"main": "dist/apps/worker/main.js", "main": "dist/apps/worker/main.js",
"scripts": { "scripts": {
"build": "tsc", "build": "tsc",
@@ -13,10 +14,12 @@
"author": "", "author": "",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"dotenv": "^16.4.7",
"ioredis": "^5.10.1" "ioredis": "^5.10.1"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^25.7.0", "@types/node": "^25.7.0",
"tsx": "^4.19.2",
"typescript": "^6.0.3" "typescript": "^6.0.3"
} }
} }

View File

@@ -9,10 +9,8 @@
// See also https://aka.ms/tsconfig/module // See also https://aka.ms/tsconfig/module
"module": "nodenext", "module": "nodenext",
"target": "esnext", "target": "esnext",
"types": [], "lib": ["esnext"],
// For nodejs: "types": ["node"],
// "lib": ["esnext"],
// "types": ["node"],
// and npm install -D @types/node // and npm install -D @types/node
// Other Outputs // Other Outputs