From c7d83534035f9fdddf3c7711013d7dbc05606464 Mon Sep 17 00:00:00 2001 From: MythEclipse Date: Wed, 13 May 2026 19:49:56 +0700 Subject: [PATCH] chore: update devDependencies and add bun-types to tsconfig --- package.json | 2 +- tsconfig.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 4546ff8..eedd919 100644 --- a/package.json +++ b/package.json @@ -37,10 +37,10 @@ "devDependencies": { "@biomejs/biome": "latest", "@types/better-sqlite3": "^7.6.13", - "@types/bun": "latest", "@types/express": "^5.0.6", "@types/fluent-ffmpeg": "^2.1.28", "@types/ws": "^8.18.1", + "bun-types": "latest", "pino-pretty": "^10.3.1", "vitest": "latest" } diff --git a/tsconfig.json b/tsconfig.json index 7aa50e9..b648b77 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,6 +6,7 @@ "strict": true, "esModuleInterop": true, "skipLibCheck": true, + "types": ["bun-types"], "outDir": "dist", "rootDir": "src", "experimentalDecorators": true,