Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"customizations": {
"vscode": {
"extensions": [
"hashicorp.hcl"
"hashicorp.hcl",
"TypeScriptTeam.native-preview"
]
}
}
Expand Down
2 changes: 1 addition & 1 deletion .github/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
"name": "Node.js & TypeScript",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm",
"image": "mcr.microsoft.com/devcontainers/typescript-node:24-bookworm",
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {},
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {},
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v22
v24
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"typescript.experimental.useTsgo": true
}
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1: Build Stage
FROM node:22 AS build
FROM node:24 AS build

WORKDIR /app

Expand All @@ -17,7 +17,7 @@ COPY . .
RUN npm run build

# Stage 2: Runtime Stage
FROM node:22-slim AS runtime
FROM node:24-slim AS runtime

WORKDIR /app

Expand Down
163 changes: 133 additions & 30 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
],
"private": true,
"scripts": {
"start": "env-cmd -f .env tsx ./src/index.ts",
"start": "tsx --env-file .env ./src/index.ts",
"test": "vitest",
"dev": "nodemon",
"terraform:deploy": "terraform -chdir=./terraform init && terraform -chdir=./terraform apply -auto-approve && terraform -chdir=./terraform output -json > ./config/local.json",
Expand All @@ -24,7 +24,7 @@
"build:fat:tf2pickup": "docker build -t sonikro/fat-tf2-pickup:latest -f ./variants/fat-tf2pickup/Dockerfile .",
"build:fat:mge-tf": "docker build -t sonikro/fat-mge-tf:latest -f ./variants/fat-mge-tf/Dockerfile .",
"push:fat:mge-tf": "docker push sonikro/fat-mge-tf:latest",
"build": "tsc"
"build": "tsgo"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -53,16 +53,16 @@
"@types/node-schedule": "^2.1.7",
"@types/supertest": "^6.0.3",
"@types/websocket": "^1.0.10",
"@typescript/native-preview": "^7.0.0-dev.20251210.1",
"@vitest/coverage-v8": "^3.0.9",
"aws-sdk-client-mock": "^4.1.0",
"aws-sdk-client-mock-vitest": "^6.2.0",
"env-cmd": "^10.1.0",
"knex": "^3.1.0",
"msw": "^2.7.3",
"nodemon": "^3.1.9",
"supertest": "^7.1.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"typescript": "^5.9.3",
"vitest": "^3.0.9",
"vitest-mock-extended": "^3.0.1",
"vitest-when": "^0.6.0"
Expand Down
Loading