chore: Update runtime version to 22 for dev work

This commit is contained in:
Göran Sander
2025-05-11 09:30:28 +02:00
parent dc6233a158
commit bf226b39db

9
.vscode/launch.json vendored
View File

@@ -6,18 +6,13 @@
"request": "launch", "request": "launch",
"name": "Launch Program", "name": "Launch Program",
"program": "${workspaceFolder}/src/butler-sos.js", "program": "${workspaceFolder}/src/butler-sos.js",
"runtimeVersion": "18", "runtimeVersion": "22",
"cwd": "${workspaceFolder}/src", "cwd": "${workspaceFolder}/src",
"env": { "env": {
"NODE_CONFIG_DIR": "${workspaceFolder}/src/config", "NODE_CONFIG_DIR": "${workspaceFolder}/src/config",
"NODE_ENV": "production" "NODE_ENV": "production"
}, },
"args": [ "args": ["--loglevel", "info", "--configfile", "./config/production.yaml"]
"--loglevel",
"info",
"--configfile",
"./config/production.yaml"
]
} }
] ]
} }